vote up 1 vote down star

Hi, I have to implement auto-logout functionality in one of my projects and i just cant figure out where to start looking for ideas but SO.

What i need is for the application to redirect the user to the login page if the user session has expired. Please tell me as to what should be my approach to tackle this requirement.

Problem Statement: If the user leaves the system for more than n minutes in any given log-in instance, the system should automatically log them off.

flag

58% accept rate

3 Answers

vote up 0 vote down

Read the MSDN documentation at http://msdn.microsoft.com/en-us/library/ms972429.aspx

link|flag
i know what session state is i just want to redirect the user to the login page when it expires! – renegadeMind Apr 2 at 11:42
You didn't read the entire page, huh! Read the section 'Sample session state application' in the above link. Modify the 'CheckSession' method, and instead of line 'span1.InnerHtml = "NOTHING, SESSION DATA LOST!"' - add code for redirection to your page. – Sandy Apr 3 at 8:13
vote up 0 vote down

Since you don't know where to start, you may find this 4guys article useful: http://www.4guysfromrolla.com/webtech/110701-1.shtml

Edit

Sounds like the jQuery timer may be useful if you want to redirect to a url after a known period of time has elapsed (i.e. your session expiry period).

Hope this helps.

link|flag
i know Authentication works; hows dat gonna help me? Please understand that the user will not be interacting witht he site and the app will still redirect it to the login page when the session expires! Its gonna be a client side thing! – renegadeMind Apr 2 at 11:48
Perhaps consider re-writing your question to make it clearer to people who are willing to spend time helping you. – Paul Suart Apr 2 at 11:53
well i thought the word auto-logout was self explanatory; guess it isn't! – renegadeMind Apr 2 at 12:30
No, not at all :) You have requirements beyond that. – JoshJordan Jun 23 at 21:06
vote up 3 vote down

Going on the comments as much as the question, I'm not sure if you're after something that will log the user out after a certain time regardless of activity, or just after a period of inactivity.

If you're happy to use the standard ASP.NET mechanisms, this can be done for you without any major work:

Set up your membership provider.

Ensure that your authentication section defines a loginUrl:

<authentication mode="Forms">
  <forms loginUrl="login.aspx" />
</authentication>

You can set a timeout other than the default 30 minutes using the "timeout" attribute on the forms element:

<authentication mode="Forms">
  <forms loginUrl="login.aspx" timeout="15"/>
</authentication>

This will log the user out after 15 minutes of inactivity on your site (either with the browser open with no javascript "heartbeat" or if they spend 15 minutes on another site).

Deny access to anonymous users

<authorization>
  <deny users="?" />
</authorization>

Then ensure that your login, registration and possibly forgotten password pages are accessable to all users using the location Element:

<location path="Logon.aspx">
  <system.web>
    <authorization>
      <allow users="?"/>
    </authorization>
  </system.web>
</location>
<location path="Register.aspx">
  <system.web>
    <authorization>
      <allow users="?"/>
    </authorization>
  </system.web>
</location>
<!-- etc -->

This way, when a user's authentication cookie expires they will be redirected to the URL specified in the loginUrl element of your forms page.


If you're not using the standard ASP.NET mechanisms, then you'd probably be better off implementing a "base page" type model.

Create a new class that inherits from System.Web.UI.Page that will check the login state of the user, and if they aren't logged in/timed out then redirect them to your login page.

In you pages that are to be locked down, instead of inheriting from System.Web.UI.Page, you inherit from your base page class (an example of this sort of setup to do something similar - check setting on each page) can be seen in my answer here


Your login page will probably need to have some frame busting JS in it to jump back out of the iFrame:

if (top!=self.parent){
  top.location=self.parent.location;
}


Or are you saying that by pressing "back" they can still see your pages through the browsers cache? In which case you'll need to be playing around with the Cache headers on every page:

Response.Cache.SetCacheability(HttpCacheability.NoCache);


Ok, well, in that case you'll also need a JS timer object to perform a Location.Replace to your login page - have this in a user control on each page (or better yet, in your master page) to automatically redirect the user after n minutes:

<script type="text/javascript">
  setTimeout('location.Replace("/login.aspx")', 900000);
</script>

The time is in milliseconds, so this will move them on in 15 minutes, and no need to get the whole jQuery framework i

link|flag
This is my Prob Statement: If the user leaves the system for more than n minutes in any given log-in instance, the system should automatically log them off. I am sorry if the question asked was not framed correctly. – renegadeMind Apr 2 at 14:19
If you're using forms authentication, set the timeout attribute to "n" minutes, and their auth token will expire after "n" minutes of inactivity - either a browser window left open, or them wandering off to another site for that time. – Zhaph - Ben Duguid Apr 2 at 15:33
I've added some detail to include the timeout setting, as well as talking about the possibility of modifying the cache headers for the pages. – Zhaph - Ben Duguid Apr 2 at 15:42
What i want to do is redirect them to the login page automatically when the session expires on the server side. so its gonna be a combo of the server side and the client side code. – renegadeMind Apr 3 at 15:23
1  
Are you sure? That's generally a dangerous practice. Unless your application is very dynamic, users usually get comfortable perceiving your pages as static. Thus, they feel that their work or the information they are viewing is "safe" independent of their authentication status, and it can be very jarring to have the application throw that away with a timed redirect. – JoshJordan Jun 28 at 12:30

Your Answer

Get an OpenID
or

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