i wish the html to submit the form once it is loaded.
what should be the code here (alert("how 's the code here"))?
Grateful if you could help me. Thanks a lot.
Tony
*************************************************
<html>
<head>
<script language="JavaScript" type="text/javascript">
function window_onload()
{
alert("how 's the code here")
}
</script>
</head>
<body bgcolor=green onload=window_onload()>
<FORM NAME="Form1"ACTION="page2.asp" METHOD="POST" target=mainFrame>
<SELECT NAME="YEARLIST">
<OPTION>01</OPTION>
<OPTION>02</OPTION>
</SELECT>
<INPUT TYPE="SUBMIT" VALUE="Submit">
<INPUT TYPE="RESET" VALUE="Reset">
</body>
</html>