Click here to Skip to main content
15,896,606 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.6K   1.2K   127  
This article explains how to maintain the web application state.
using AndrewGolik.Training.Components;
using AndrewGolik.Training.Components.Storage;

namespace AndrewGolik.Training.Bll
{
    public class UserSettings : StateObject<UserSettings, SessionStorage<UserSettings>>
    {
        private string _displayName;
        private bool _isHelpEnabled;
        private bool _isDashboardEnabled;
        private string _offlineMessage;

        public bool IsHelpEnabled
        {
            get { return _isHelpEnabled; }
            set { _isHelpEnabled = value; }
        }

        public bool IsDashboardEnabled
        {
            get { return _isDashboardEnabled; }
            set { _isDashboardEnabled = value; }
        }

        public string OfflineMessage
        {
            get { return _offlineMessage; }
            set { _offlineMessage = value; }
        }

        public string DisplayName
        {
            get { return _displayName; }
            set { _displayName = 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