Click here to Skip to main content
15,879,239 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi I am new to this .net world so find some problems sometime please help me to overcome this.
I have a hyperlink and its navigate url indicates to a secure page ,
and that secure page is present inside a folder.user can see this page after his/her successful login.so my requirement is when user click on hyperlink it will navigate to login page though its navigate url indiacte to secure page, after successful login user can able to see the secure page otherwise not,Please suggest me.
Posted

1 solution

This can be done in two ways.
1. When you login create session (in login page login button click)
like
Session["user"]= txtUser.Text;

Write below code in page which you have to make secure.

Protected void Page_load(object sender,EventArgs e)
{
if(Session["user"] == null)
{
Responce.Redirect("Login.aspx");
}
}



2. If you are using membership then refer this link
using-web-config-directory-security-and-extensionless-urls
 
Share this answer
 

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