|
rdouglass -> RE: Form Auto Post (1/18/2008 11:55:40)
|
quote:
<form method="POST" action="test2.asp"> This should work - I do it all the time: Identify the form like this: <form method="POST" action="test2.asp" name="myform"> Then, at the bottom of the page just before the </body> tag, put this: <%IF Request.querystring("test") = "123" THEN%> <script language="javascript"> document.forms["myform"].submit(); </script> <%END IF%> That should submit the form automatically if the querystring has "test=123" in it. That help any?
|
|
|
|