Alert user when their session is about to expire

Posted by budugu on ASP.net Weblogs See other posts from ASP.net Weblogs or by budugu
Published on Fri, 21 May 2010 14:07:00 GMT Indexed on 2010/05/21 14:11 UTC
Read the original article Hit count: 205

Filed under:
|

Note: Cross posted from Vijay Kodali's Blog.
Permalink

Here is a quick and dirty trick to alert users on session timeout. This is not a perfect solution. But it will give reader an idea to work on...

Some facts before we start:

Session doesn't end

  • When the user closes his browser
  • When the user navigates away from your page
  • When user connection lost.

Session ends, when the server hasn't gotten a request from the user in a specific time (Session timeout value)....Permalink

© ASP.net Weblogs or respective owner

Related posts about ASP.NET

Related posts about Visual Studio