Here is a short example script containing a form that submits to itself:

<%
$Response->{FormFill} = 1;
%>
<form action="test.asp" method="post">
<input type="checkbox" name="x">Checkbox<br>
<input type="submit">
</form>

If you check that box and then submit the form, when it displays the form
again the Checkbox becomes unchecked.

If you change the INPUT tag to:
<input type="checkbox" name="x" checked>

and load the page, check the box and submit the page, it also becomes
unchecked.

-Philip Mak ([EMAIL PROTECTED])


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to