I haven't looked into the code, and probably won't, be it appears to be the boolean is messed up.
Try doing:
Response.Write("AutoLogin: " + blnAutoLogin");
And see what it says. If it says True or False then everything should be fine, so try adding quotes around it like this:
<td width="50%" valign="top"><% = strTxtYes %><input
type="radio" name="Login" id="Login" value="True" <% If blnAutoLogin
= "True" Then Response.Write "checked" %>
/> <% = strTxtNo %><input type="radio"
name="Login" id="Login" value="False" <% If blnAutoLogin = "False"
Then Response.Write "checked" %> /></td> |
If that don't work, try changing the "False" and "True" to have a lower case F and T.
What I'm saying is the boolean it's checking for might not actually be a boolean, which might be the issue.
But I don't know.
As for Login_Attempt, I assume that's to keep count of how many times the user "attempted" to login but failed.. I think when you login say 10 times in a row and it fails, a CAPTCHA will show up. That's what I assume that's for.
Hope this helps :)