i have 2 pages in my application: Login.aspx & Home.aspx.

Now if user is not login, he should not access the Home.aspx from a web browser.

I know that is possible by session, but don't know how to implement the same.

let me know how to do that?

thanks!

link|improve this question

What are you using for the Membership provider? Are you using Forms-based authentication, or some other form of authentication? – David Stratton Apr 15 '11 at 13:34
Recommended reading: msdn.microsoft.com/en-us/library/9wff0kyh.aspx – David Stratton Apr 15 '11 at 13:38
@David: forms based authentication – Smith Pascal Jr. Apr 15 '11 at 13:47
Then all you have to do is specify that unauthenticated users do not have access in the web.config: <deny users="?"/> It will force anyone coming to your site to go tothe login.aspx as long as you're configured correctly. – David Stratton Apr 15 '11 at 13:50
@david: won't session help. there are just 2 pages. Login & Home – Smith Pascal Jr. Apr 15 '11 at 14:04
show 2 more comments
feedback

2 Answers

up vote 0 down vote accepted

i don't know exactly what do u want but here is a solution 1. create seesion variable after successful login like this

Session["username"] = textbox1.text;
  1. after u created the session varible make use of

    Server.Transfer()

method in your code

That is the only way i know how to do it currently and good luck

link|improve this answer
feedback

The way I have handled this was to set a token on a successful log in. Then in the load event of each page I check to see if the token is set. If no token they get redirected. Depending on the nature of the app I either send them to a not authorized page or the login screen.

Usually I keep the token in session but if you wanted to allow a user to persist their login across sessions then a browser cookie should work as well.

link|improve this answer
That seems like an awfullot of duplicate code - putting it in the page_load of each page. The built-in membership providers allow you to control access much more simply. – David Stratton Apr 15 '11 at 13:37
@David There are several ways to eliminate or reduce the duplicate code issues. One would be to move the testing and redirect logic off to a static method, then a one line call to said method is all you need. Another would be to create a base page which inherits from the page class and implement this check there, then all of your other pages inherit from the new class. I have never used the providers but based on a quick skim over your link it looks like they do the same basic thing. – Rozwel Apr 15 '11 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.