Click here to Skip to main content
Licence CPOL
First Posted 28 Apr 2006
Views 102,374
Bookmarked 71 times

Make session last forever

By | 23 Oct 2006 | Article
This article will show how to make the session last longer than 20 minutes of inactivity.

Introduction

You do not always have the luxury to bump up the session expiration period from 20 minutes on a server (most likely you are on a shared hosting). Plus it's a bad idea to unnecessarily consume the resources on a server. I have a simple solution that will take care of this problem.

Solution

The solution is simple. Let's create an ASPX page that will return a 1x1 transparent GIF image, and using JavaScript, refresh it every 15 minutes. Thus, the browser will renew the session every 15 minutes if the user is simply reading long text on a page or has walked away to get a cup of coffee. But if the browser is closed (or the user navigates away from our site), the session will expire after 20 minutes of inactivity. And we no longer consume the resources on the server.

Implementation

The implementation is rather simple, especially in the .NET environment.

  1. Create a renewSes.aspx page
  2. In the code-behind, add the following lines:
  3. public class renewSes : System.Web.UI.Page
    {
        static byte [] gif = {0x47,0x49,0x46,0x38,0x39,0x61,0x01,0x00,0x01,
                              0x00,0x91,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
                              0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x21,0xf9,
                              0x04,0x09,0x00,0x00,0x00,0x00,0x2c,0x00,0x00,
                              0x00,0x00,0x01,0x00,0x01,0x00,0x00,0x08,0x04,
                              0x00,0x01,0x04,0x04,0x00,0x3b,0x00};
    
        override protected void OnInit(EventArgs e)
        {
            InitializeComponent();
            base.OnInit(e);
        }
        
        private void InitializeComponent()
        {    
            Response.AddHeader("ContentType", "image/gif");
            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            Response.BinaryWrite(gif);
            Response.End();
        }
    }

    This code will simply output a small 1x1 transparent GIF, which is in the array "gif", so we do not need to hit the file system for that. Plus, Cacheability is set to NoCache as we do not want the browser to hit the cache, but we want it to renew our session.

  4. Create a user control that has the following HTML:
  5. <script language="Javascript">
    window.setInterval("renewSession();", 600000);
    function renewSession()
    {document.images("renewSession").src = "/renewSes.aspx?par=" + Math.random();}
    </script>
    <img src="/renewSes.aspx" name=renewSession id=renewSession>

    The code simply hits /renewSes.aspx every 10 minutes, thus keeping your session alive. Plus, Math.random was added to avoid caching in the browser.

  6. Dump it on every page somewhere. Or if you are using templates, then simply add it to your master page.
  7. Done!!! You might want to move the JavaScript code to RegisterClientScriptBlock, but it's not necessary.

Conclusion

Obviously, this method will only work if JavaScript is on, but it's a majority, plus do not forget that it's only for rare cases when the user leaves your page open and walks away expecting you will keep him logged in forever. The server resources are minimal since sessions will continue to expire every 20 minutes when the user navigates away, and the only excessive traffic is the 48 bytes every ten minutes to keep the session alive.

Sample

If you want to see how it works, feel free to visit my E-Commerce Body jewelry site. Add something to the shopping cart and wait for 20 minutes or for a couple days. When you will be back, the cart is still going to be there.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Gevorg

Web Developer

United States United States

Member

I am a Senior Software developer who does a consulting work for several companies. Mostly it's an E-Commerce project.
 
I do have my own venture. Small online store my wife runs. Body Jewelry. Also visit Piercing info Cool thing is that nor I nor my wife has any piercings. My new website is Belly ring

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberJason Ti22:40 20 Dec '10  
GeneralRainbow jewels Pinmemberimaginaryplaymate22:38 20 Dec '08  
Questionthe same with asp? Pinmemberran90:26 20 Nov '07  
GeneralDreamers! Pinmemberbeep5:40 1 Nov '07  
QuestionWhy using a random number? PinmemberAdam Tibi23:13 30 Nov '06  
Generalnot fully argee PinmemberEffun Din21:36 30 Oct '06  
GeneralRe: not fully argee PinmemberAdam Tibi3:49 31 Oct '06  
GeneralRe: not fully argee PinmemberEffun Din4:17 31 Oct '06  
GeneralAnother improvement PinmemberDejaVudew3:07 10 Oct '06  
GeneralRe: Another improvement PinmemberGevorg8:41 10 Oct '06  
AnswerRe: Another improvement PinmemberDejaVudew12:01 10 Oct '06  
GeneralRe: Another improvement PinmemberGevorg8:14 12 Oct '06  
GeneralAnother aproche PinmemberZorbek13:22 9 Oct '06  
GeneralProfile? [asp.net 2.0] PinmemberBigBenDk11:48 21 Aug '06  
GeneralRe: Profile? [asp.net 2.0] PinmemberGevorg2:34 22 Aug '06  
GeneralRe: Profile? [asp.net 2.0] PinmemberMivano4:06 7 Oct '06  
GeneralSlight modification PinmemberSymo S6:11 21 Aug '06  
GeneralRe: Slight modification PinmemberTrevahaha15:25 28 Nov '07  
GeneralRe: Slight modification Pinmemberjonnoshaw16:06 3 Apr '09  
GeneralAmazing Work !! Pinmemberbobtxt22:23 8 Aug '06  
GeneralIts a good idea but here's a slight improvement PinmemberRobert Ensor17:21 30 Jul '06  
GeneralRe: Its a good idea but here's a slight improvement PinmemberGevorg4:38 31 Jul '06  
AnswerRe: Its a good idea but here's a slight improvement PinmemberAdam Tibi2:19 1 Aug '06  
GeneralRe: Its a good idea but here's a slight improvement PinmemberGevorg11:09 1 Aug '06  
GeneralRe: Its a good idea but here's a slight improvement [modified] PinmemberRobert Ensor11:53 1 Aug '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 23 Oct 2006
Article Copyright 2006 by Gevorg
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid