Infolink

 

Search This Blog

Nov 24, 2012

Session State in Asp.Net

Session State

Sometimes you want your web page to 'stay alive'. That is, if a user is filling out a complicated form, you do not want the session to time out before they are finished. The user could get very angry and rightfully so: You might even get yelled at!


It's not simply a matter of increasing the session timeout to a very large value. If you do that, the sessions would be left active in the server memory for hours—long after the visitors have left the site. Increasing the session timeout IS a solution… but not necessarily a good solution.

The goal is that the session should stay active as long as the web page is open on the client machine …even if there are no post backs to reset the session timer. When the web page is closed, the session should time out normally.

I implemented a solution for this: The client will "ping" the server at intervals of less than the session timeout which will reset the session timer. This is known as the Heartbeat design pattern (I couldn't find a decent site/page to link to).

Miscellaneous Setup Stuff:

For testing purposes, I set the Session Timeout to two minutes in web.config:

<system.web>

  <sessionState timeout="2">

</sessionState>

/// ---- ODS ---------------------------------------

/// <summary>

/// Output Debug String with time stamp.

/// </summary>

public static void ODS(string Msg)
{
    String Out = String.Format("{0}  {1}",  DateTime.Now.ToString("hh:mm:ss.ff"), Msg);

    System.Diagnostics.Debug.WriteLine(Out);
}

To watch the Session State events, I added debugging strings to the global.asax file:

<%@ Application Language="C#" %>

<script RunAt="server">

     void Application_Start(object sender, EventArgs e)
    {
        MiscUtilities.ODS("****ApplicationStart");
    }

    void Session_Start(object sender, EventArgs e)
    {
        MiscUtilities.ODS("Session_Start");
    }

    void Session_End(object sender, EventArgs e)
    {
        MiscUtilities.ODS("Session_End");
    }

Here are the details:

We need a method at the server for the client to call. We use a WebMethod.
  1.     There must be a ScriptManager on the page.
  2.     The ScriptManager must have EnablePageMethods set to true.
  3.     The WebMethod must be public and static.
  4.     The WebMethod must have the EnableSession attribute set to true.

<asp:ScriptManager ID="ScriptManager1" runat="server"  EnablePageMethods="true"> </asp:ScriptManager>

public partial class _Default : System.Web.UI.Page
{
    [WebMethod(EnableSession=true ) ]

    public static void PokePage()
    {
        // called by client to refresh session

        MiscUtilities.ODS("Server: I am poked");      
    }

We need JavaScript at the client to call the server function at fixed intervals:

<script type="text/javascript">

    var HeartBeatTimer;

    function StartHeartBeat()
    {
        // pulse every 10 seconds

        if (HeartBeatTimer == null)

            HeartBeatTimer = setInterval("HeartBeat()", 1000 * 10);
    }


    function HeartBeat()
    {
        // note: ScriptManger must have: EnablePageMethods="true"

        Sys.Debug.trace("Client: Poke Server");

        PageMethods.PokePage();
    }

<body id="MyBody"  onload="StartHeartBeat();">

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...