AbsolutMauser
07-07-02, 21:01
| Greetings, I am trying to determine if two submitted passwords are equal. So, I have a litte "if" line like so: if(Request.Form("password") != Request.Form("verifypassword"){ return false; } However, no matter what is in the password and verifypassword fields, it always returns false, even if they are the same! (verified by using an =Request.Form("password") and =Request.Form("verifypassword") in the HTML doc to check the values outside of the password field. I have also tried creating string objects called pass1 and pass2, saving the two Request.Form items to them, and then comparing them as pass1.toString() and pass2.toString() again to no avail. Anyone have any thoughts as to what is going on in my app? Thanks! ~AbM |