Click here to Skip to main content
15,867,330 members
Articles / Web Development / ASP.NET

Programming Practice for Server Side State Maintenance Variable

Rate me:
Please Sign up or sign in to vote.
3.15/5 (12 votes)
11 Jan 2011CPOL2 min read 40.3K   6   19
Programming practice for server side state maintenance variable

Introduction

Http protocol is stateless, so we need to maintain state on Client side or Server side. For this time, I am going to discuss about the maintaining state on Server Side with one programming practice.

Problem

To maintain state on Server side, most of the developers use Session, Caching, Application variables. But most of the beginner developers make one mistake, which is:

C#
session["myData"] = data;

Code pushes data in session variable(s).

C#
Data = (Conversion_To_Data_Type_Of_Data) session["mydata"];

Code gets data back from session variable.So most of the developers follow the above procedure to push and get data from server side variable.

Disadvantages

  1. Developer requires remembering name of string value, i.e., name of the variable. If you refer to the above code, it's mydata.
  2. If there are a number of developers working on a project, it’s hard to maintain server side variable if we follow the above procedure, i.e., your maintenance increases.
  3. If there are large number of developers working in your project, you require to inform each and every one about the variable you are declaring.

Solution

The easiest solution that I found after doing so much programming is as follows:

Step 1

Create one static class:

C#
public class SessionPropeties
{
 // code
}

Step 2

Create property for each session variable of your application as shown below:

C#
public int UserId
{
        get
        {
           if(HttpContext.Current.Session["UserID"]!=null)
            return Convert.ToInt32(HttpContext.Current.Session["UserID"].ToString());
           else
          return 0;
        }
        set
        {
            HttpContext.Current.Session["UserID"] = value;
        }
}

After following the above steps, the class will be like below:

C#
public class SessionPropeties
{
 public DataType prop1
 {
        get
        {
           if(HttpContext.Current.Session["prop1"]!=null)
            return Convert.ToDataType (HttpContext.Current.Session["prop1"].ToString());
           else
            return defaultvalue;
        }
        set
        {
            HttpContext.Current.Session["prop1"] = value;
        }
      
 }
 public DataType prop2
 {
        get
        {
           if(HttpContext.Current.Session["prop2"]!=null)
            return Convert.ToDataType (HttpContext.Current.Session["prop2"].ToString());
           else
            return defaultvalue;
        }
        set
        {
            HttpContext.Current.Session["prop2"] = value;
        }
      
 }
 
 ...........
 
}

Step 3

In coding to get and set data, you just require to call these properties.

To set data
C#
SessionProperties.UserId = 1;
To get data
C#
int userid = SessionProperties.UserId;

Advantages

  1. Once you declare your properties, you do not need to remember it. You just need to call your Session property class.
  2. Maintenance becomes easy when project size is large or there are a number of developers working in a team, because you just need to refer to the Sessionproperties class having all severside properties. And you can also add property you need and you don’t require to inform all the people working in your team.

Summary

You can maintain your Cache and Application server side variable in a similar way. So it's better you encapsulate your server side variable in one class which makes your task easy when you do code in web application.

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)
India India

Microsoft C# MVP (12-13)



Hey, I am Pranay Rana, working as a Team Leadin MNC. Web development in Asp.Net with C# and MS sql server are the experience tools that I have had for the past 5.5 years now.

For me def. of programming is : Programming is something that you do once and that get used by multiple for many years

You can visit my blog


StackOverFlow - http://stackoverflow.com/users/314488/pranay
My CV :- http://careers.stackoverflow.com/pranayamr

Awards:



Comments and Discussions

 
GeneralRe: My vote of 4 Pin
Pranay Rana11-Jan-11 20:06
professionalPranay Rana11-Jan-11 20:06 
GeneralBetter design.. Pin
Ruchit S.11-Jan-11 18:43
Ruchit S.11-Jan-11 18:43 
GeneralRe: Better design.. Pin
Venkatesh Mookkan11-Jan-11 19:57
Venkatesh Mookkan11-Jan-11 19:57 
GeneralRe: Better design.. Pin
Ruchit S.11-Jan-11 20:11
Ruchit S.11-Jan-11 20:11 
GeneralThoughts Pin
PIEBALDconsult11-Jan-11 18:13
mvePIEBALDconsult11-Jan-11 18:13 
GeneralRe: Thoughts Pin
Pranay Rana11-Jan-11 18:33
professionalPranay Rana11-Jan-11 18:33 
GeneralRe: Thoughts Pin
PIEBALDconsult12-Jan-11 2:28
mvePIEBALDconsult12-Jan-11 2:28 
GeneralRe: Thoughts Pin
Pranay Rana13-Jan-11 8:55
professionalPranay Rana13-Jan-11 8:55 
GeneralRe: Thoughts Pin
Blarsern17-Jan-11 21:17
Blarsern17-Jan-11 21:17 

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.