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

Beginners Introduction to State Management Techniques in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.84/5 (123 votes)
23 Dec 2008CPOL23 min read 395.1K   3.4K   286  
This article discusses the state management techniques used in ASP.NET. We discuss: QueryString, Cookie, Session, Profile, Static Variables and Application state.
using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;

/// <summary>
/// Summary description for NormalPage
/// </summary>
public abstract class NormalPage : Page
{
	public NormalPage()
	{
		//
		// TODO: Add constructor logic here
		//
	}

    protected override void OnInit(EventArgs e) {
        base.OnInit(e);
    }
}

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
Software Developer ThoughtWorks
India India
Call me Navaneeth Some years ago--never mind how long precisely, I was doing programs with C and C++. When .NET came, I started with C#,ASP.NET and SQL Server.

Comments and Discussions