Click here to Skip to main content
6,292,426 members and growing! (10,116 online)
Email Password   helpLost your password?
Web Development » Session State » Sessions and Session State     Intermediate

Using Attributes for encapsulating ASP.NET Session and ViewState variables

By Fábio Batista

A generic and type-safe way to encapsulate ASP.NET Session and ViewState variables.
C#, Windows, .NET 1.0, .NET 1.1, .NET 2.0, DotGNU, ASP.NET, Visual Studio, WebForms, Dev
Posted:13 Apr 2005
Views:46,180
Bookmarked:54 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
21 votes for this article.
Popularity: 5.83 Rating: 4.41 out of 5

1
2 votes, 9.5%
2
1 vote, 4.8%
3
5 votes, 23.8%
4
13 votes, 61.9%
5

Introduction

In my first CodeProject article. I'll show how to encapsulate the access to objects stored in the Session, ViewState or Application collections.

Background

ASP.NET development is great. Using code-behind classes, user controls, datasets, and encapsulating the application business logic, ASP.NET development (almost) turned into pleasure.

But sometimes you find yourself in need to write code that reads and writes to the Session, ViewState or even the Application collection. I don't know about other developers, but I hate using non-typesafe collections like these.

That's when attributes and reflection come in handy - so you don't need to type all those casts.

This sample code relies on tagging fields of a WebForm using an attribute, and then subclassing the Page class to override the LoadViewState, SaveViewState, OnInit and OnUnload behavior.

Declaring the Metadata

We need to create an attribute, so we can mark the WebForm fields we want to be persisted.

[AttributeUsage(AttributeTargets.Field)]
public class PersistFieldAttribute : Attribute
{
    PersistLocation loc;
    string key;

    public PersistFieldAttribute()
        : this(PersistLocation.Nowhere, null)
    {
    }
    
    public PersistFieldAttribute(PersistLocation location)
        : this(location, null)
    {
    }

    public PersistFieldAttribute(PersistLocation location, string key)
    {
        Location = location;
        Key = key;
    }

    public string GetKeyFor(MemberInfo mi)
    {
        return (Key != null ? Key + "_" + mi.Name : mi.Name);
    }
    
    public string Key
    {
        get { return key; }
        set { key = value; }
    }

    public PersistLocation Location
    {
        get { return loc; }
        set { loc = value; }
    }

    public static PersistFieldAttribute GetAttribute(MemberInfo mi)
    {
        return (PersistFieldAttribute) Attribute.GetCustomAttribute(mi, 
                            typeof(PersistFieldAttribute));
    }

    public static PersistFieldAttribute GetAttribute(MemberInfo mi, 
                            PersistLocation forLocation)
    {
        PersistFieldAttribute attr = GetAttribute(mi);
        return (attr != null && attr.Location == forLocation ? attr : null);
    }
}

I also added some helper (and type-safe) static GetAttribute methods.

Of course, we also need to declare the PersistLocation enumeration:

public enum PersistLocation
{
    Nowhere     = 0x00,
    Context     = 0x01,
    ViewState   = 0x02,
    Session     = 0x04,
    Application = 0x08,
}

(YES, I like to explicitly declare the enumeration values)

Overriding System.Web.UI.Page

We'll need to override these four methods:

using System;
using System.Reflection;
using System.Web.UI;

public class PageEx : Page
{
    const BindingFlags FieldBindingFlags = 
         BindingFlags.Instance|BindingFlags.NonPublic;

    protected override void LoadViewState(object savedState)
    {
        base.LoadViewState(savedState);
        
        foreach (FieldInfo fi in GetType().GetFields(FieldBindingFlags))
        {
            PersistFieldAttribute attr = 
                 PersistFieldAttribute.GetAttribute(fi, PersistLocation.ViewState);
            if (attr != null)
            {
                TrySetValue(fi, ViewState[attr.GetKeyFor(fi)]);
            }
        }
    }

    protected override object SaveViewState()
    {
        foreach (FieldInfo fi in GetType().GetFields(FieldBindingFlags))
        {
            PersistFieldAttribute attr = 
                  PersistFieldAttribute.GetAttribute(fi, PersistLocation.ViewState);
            if (attr != null)
                ViewState[attr.GetKeyFor(fi)] = TryGetValue(fi);
        }
        return base.SaveViewState();
    }

    protected override void OnInit(EventArgs e)
    {
        foreach (FieldInfo fi in GetType().GetFields(FieldBindingFlags))
        {
            PersistFieldAttribute attr = PersistFieldAttribute.GetAttribute(fi);
            if (attr != null)
            {
                switch (attr.Location)
                {
                    case PersistLocation.Application:
                        TrySetValue(fi, Application[attr.GetKeyFor(fi)]);
                        break;
                    case PersistLocation.Context:
                        TrySetValue(fi, Context.Items[attr.GetKeyFor(fi)]);
                        break;
                    case PersistLocation.Session:
                        TrySetValue(fi, Session[attr.GetKeyFor(fi)]);
                        break;
                }
            }
        }

        base.OnInit(e);
    }

    protected override void OnUnload(EventArgs e)
    {
        base.OnUnload(e);

        foreach (FieldInfo fi in GetType().GetFields(FieldBindingFlags))
        {
            PersistFieldAttribute attr = PersistFieldAttribute.GetAttribute(fi);
            if (attr != null)
            {
                switch (attr.Location)
                {
                    case PersistLocation.Application:
                        Application[attr.GetKeyFor(fi)] = TryGetValue(fi);
                        break;
                    case PersistLocation.Context:
                        Context.Items[attr.GetKeyFor(fi)] = TryGetValue(fi);
                        break;
                    case PersistLocation.Session:
                        Session[attr.GetKeyFor(fi)] = TryGetValue(fi);
                        break;
                }
            }
        }
    }
}

Using the attributes

That's the simplest part:

public class MyCustomPage : PageEx
{
    [PersistField(Key = "custompage", Location = PersistLocation.Session)]
    protected DataSet ds;

    [PersistField(Location = PersistLocation.ViewState)]
    protected bool isLoaded = false;
    
    .
    .
    .
    
    private void Page_Load(object sender, EventArgs e)
    {
        if (ds == null)
            ds = new DataSet();
    }
}

How does it work?

When a new instance of your Page Handler (the class directly derived from your code-behind class) is created, its constructor is called. Just before it runs, the inline assignments you wrote are executed.

Our OnInit override runs just after the constructor and inline assignments. Then our LoadViewState override is called.

If your attribute isn't in the persistent collection (such as when the page is first run), it's simply not assigned. That's when your inline assignments come in handy: to specify a default value for the field.

After the execution of our loading overrides, you're ready to perform your work. Use the fields just like they were usual fields.

When the page unloads, the other overrides will store the field value in the persistent collection. And you're done!

Some Warnings

  • Try not to create objects in inline assignments. You can end up wasting an initialization, as the instance you created will eventually be replaced by the stored one.
  • Make sure you supply a key name when persisting fields to the Session or Application, so that you avoid annoying conflicts.
  • The fields are saved in the media in the format Key - underscore - Member Name.

Conclusion

I hope this article can be as useful for other developers as it's for me. Thank you.

History

  • April 04, 2005

    First version.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Fábio Batista


Member
Fábio Batista started programming in BASIC at 1989, using a CP400 machine. Currently he is running a company located in Porto Alegre, Brazil, called Suprifattus; and developing in C#, Java, C++ and any other thing that has a grammar.
Occupation: Web Developer
Location: Brazil Brazil

Other popular Session State articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 12 of 12 (Total in Forum: 12) (Refresh)FirstPrevNext
GeneralThe attribute is not working for my class?!? Pinmembervatri5:28 9 Sep '08  
GeneralRe: The attribute is not working for my class?!? Pinmembervatri5:33 9 Sep '08  
QuestionGreat solution. Where i can ... PinmemberDaniel Junges4:28 12 Apr '08  
GeneralRe: Great solution. Where i can ... Pinmembercristianbg19:11 21 Apr '08  
GeneralGreat concept PinmemberSteven Berkovitz16:34 26 Nov '07  
GeneralFor portuguese readers PinmemberFábio Batista10:09 24 Apr '05  
GeneralI like! Pinmembermwdiablo19:14 20 Apr '05  
GeneralRe: I like! PinmemberFábio Batista6:26 21 Apr '05  
GeneralRe: I like! Pinmembermwdiablo21:20 21 Apr '05  
GeneralRe: I like! PinmemberFábio Batista10:10 24 Apr '05  
GeneralRe: I like! Pinmembermwdiablo13:01 24 Apr '05  
GeneralRe: I like! Pinmembermonkeyboy244:35 17 May '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 13 Apr 2005
Editor: Sumalatha K.R.
Copyright 2005 by Fábio Batista
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project