you didn't post the rest of your form: look if the rest of your form is ok, i mean if you have all the end-tags you need. try cleaning up the code, formatting it more nicely so you can see in a second where the problem could be.
I mean in this way:
-------------
<FORM ACTION="CheckLogin.asp
<%
If Request("SecondTry")="True" Then
Response.Write "?SecondTry=True"
End If
%>
" METHOD="POST">
--------------
i don't see an error here, so i guess it must be in the rest of your form (or in the part before it.
Maybe it could also be more clearly if you work this way:
-------------
<%
response.write "<FORM METHOD=""POST"" ACTION=""CheckLogin.asp"
If Request("SecondTry")="True" Then Response.Write "?SecondTry=True"
response.write """>"
%>
--------------
bye,
mndrx
|