Click here to Skip to main content
15,886,720 members
Articles / Web Development / ASP.NET
Tip/Trick

Use Session Object as Static Class Variables

Rate me:
Please Sign up or sign in to vote.
4.77/5 (4 votes)
5 Nov 2013CPOL 25.4K   4   3
This tip describes the way to use the session object as a static class.

Introduction

This tip describes the way to use the session object as a static class. The advantage is that you can define all the variables (with their appropriate getters / setters) that you will require and session values can be set / get using . (dot) operator of static class.

Using the Code

You can use session object as static class using the appcode folder. You need to define a static class with its member variables and getters / setters. Just follow the steps given below:

  1. Create a new .cs class in your appcode folder.
  2. Convert the class as static:
    C#
    public static class SessionManager 
  3. Declare and define the static variables names:
    C#
    private const string SESSION_StageFlag = "StageFlag";
  4. Create the appropriate properties for each variable defined earlier:
    C#
    public static string StageFlag
            {
                get
                {
                    if (null != HttpContext.Current.Session[SESSION_StageFlag])
                        return HttpContext.Current.Session[SESSION_StageFlag] as string;
                    else
                        return null;
                }
                set
                {
                    HttpContext.Current.Session[SESSION_StageFlag] = value;
                }
            }
  5. Build your project and now you will be able to manipulate the session through SessionManager in your aspx.cs classes. Just add the namespace of your new SessionManager class and it can be accessed as shown below:
    C#
    SessionManager.StageFlag = "Fixed" 

License

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


Written By
Software Developer (Senior) Freelancer
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionConcurrency Pin
ExpertITM21-Nov-15 17:58
ExpertITM21-Nov-15 17:58 
SuggestionFacade Pattern Pin
Richard Deeming12-Nov-13 8:31
mveRichard Deeming12-Nov-13 8:31 
GeneralRe: Facade Pattern Pin
Muhammad Waqas Iqbal12-Nov-13 16:55
Muhammad Waqas Iqbal12-Nov-13 16:55 

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

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