Click here to Skip to main content
15,892,005 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 83.3K   1.2K   127  
This article explains how to maintain the web application state.
using System;
using System.Collections.Generic;
using AndrewGolik.Training.Dal;

namespace AndrewGolik.Training.Components.Storage
{
    public class ConfigurableStorage<T> : IStorage<T> where T : class
    {
        private readonly IStorage<T> _storage = ResolveStorage();

        private static IStorage<T> ResolveStorage()
        {
            switch (Config.StorageType)
            {
                case StorageType.AppicationStorage:
                    return new ApplicationStorage<T>();
                case StorageType.SessionStorage:
                    return new SessionStorage<T>();
                case StorageType.FileStorage:
                    return new FileStorage<T>();
                case StorageType.DaoStorage:
                    return new DaoStorage<T>();
                case StorageType.CookieStorage:
                    return new CookieStorage<T>();
                default:
                    throw new ApplicationException("StorageType");
            }
        }

        public void Save(object key, T obj)
        {
            _storage.Save(key, obj);
        }

        public T Get(object key)
        {
            return _storage.Get(key);
        }

        public void Delete(object key)
        {
            _storage.Delete(key);
        }

        public List<T> GetAll(Type type)
        {
            return _storage.GetAll(type);
        }


        public void Clear()
        {
            _storage.Clear();
        }
    }
}

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