Author: picals | Posted on: 9/12/2009 12:09:03 PM | Views : 832

 I apologize for being "new" to the forum, but I have an issue that's probably very simple, yet is keeping me up.
I have an application that has a user login screen.  I wanted to put a "password reset" screen on it. 
So I copied the aspx file and code behind file to a new name, PWResetPage, then in the original login page, i added a button (and a hyperlink which didn't matter, same result) to redirect the login page to the new page.   The login page already had a Response.Redirect in it, where if the credentials worked, it would redirect to one of 3 pages. 
Bottom line, when I add the code: Wired to the pwResetBtn_Click Sub: 
Response.Redirect("../Security/PWResetPage.aspx") 
instead of redirecting to the /Security/PWReset.aspx page, it returns to the /Security/LoginPage.aspx as if nothing happened at all!
I have to figure that something is wrong and ...

Go to the complete details ...