|
Subject:
|
Ch 15 login.asp code
|
|
Posted By:
|
sirandre007
|
Post Date:
|
1/2/2004 12:51:08 PM
|
I get the following when I open the code. TEXTBOX is the actual white input box. I looked for a mis " some palce and I can find it.
" METHOD="POST"> E-Mail Address:TEXTBOX VALUE="" SIZE="40"> Password: TEXTBOX
Here is my code from the book / downloaded code
<FORM ACTION="CheckLogin.asp<% If Request("SecondTry")="True" Then Response.Write "?SecondTry=True" End If %>" METHOD="POST">
Thank you Andre'
|
|
Reply By:
|
mndrx
|
Reply Date:
|
1/3/2004 6:11:27 AM
|
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
|