Click here to Skip to main content
15,885,182 members
Articles / Web Development / HTML

Web Application State

Rate me:
Please Sign up or sign in to vote.
4.87/5 (16 votes)
15 Apr 2008CPOL7 min read 82.9K   1.2K   127  
This article explains how to maintain the web application state.
using System.Collections;
using System.Web;

namespace AndrewGolik.Training.Components.Storage
{
    public class ApplicationStorage<T> : HashStorage<T> where T : class
    {
        protected override Hashtable TypeStorage
        {
            get
            {
                string typeKey = typeof (T).FullName;
                return HttpContext.Current.Application[typeKey] as Hashtable;
            }
            set
            {
                string typeKey = typeof (T).FullName;
                HttpContext.Current.Application[typeKey] = value;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Web Developer
Belarus Belarus
Andrew Golik is a software professional working in Minsk, Belarus.
He enjoys design infrastructures based on object oriented paradigm. His programming experience includes ASP, ASP.NET, .NET, COM, JAVA, PHP, DHTML, AJAX, blah blah blah....

Andrew Golik's Blog

Comments and Discussions