If you need a quick way to submit a html form when the page loads, use this easy piece of code to do it. It submits the form with body onload.
-
<body onLoad="document.form1.submit();">
-
<FORM method="post" name="login" action="https://www.website.cfm">
-
<INPUT type="hidden" name="Username" value=" " />
-
<INPUT type="hidden" name="Password" value=" " />
-
<INPUT type="hidden" value="Login" />
-
</FORM>