Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am new in asp, here my question is that i have a website with pages home, about, contact, and login. In this website user can login and then access the home page, on home page there is a grid view with master page. The problem is that user can access the home page without login, just edit the path in address bar. For example the login page path is

http://lolhost:54515/mastergridvie/Login.aspx

and user edit it

http://localhost:54515/mastergridvie/Home.aspx

so user can go on home page without login, How I can prevent this?

I know for this there use a session, but I have no idea how to and where create a session for this :( Please can anyone help me?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
256 views
Welcome To Ask or Share your Answers For Others

1 Answer

Create Session in login page like this.

Session["userid"]="something";

And After That Check in Every Page Load like This.

if(Session["userid"] == null)
{
  Response.Redirect("Login.aspx");
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...