Click here to Skip to main content
15,894,106 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

How to login form aspx to another aspxpage by using asp.net.
Posted
Comments
Prerak Patel 18-Aug-11 4:02am    
Not clear.

Check this if you mean redirecting after login
http://forums.asp.net/p/1332207/2675781.aspx[^]
 
Share this answer
 
code like:

if(userName & Password is valid)
{
  Response.Redirect("Page2.aspx");
}


N.B. this code is not a programming code just say that if user name and password is true then page2.aspx is loaded.

Thanks
 
Share this answer
 
v2
Comments
Reiss 18-Aug-11 4:50am    
even pseudocode should go in a code block

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900