State Management in ASP.Net



ASP.Net State Management

This asp.net post we will learn an overview of state management techniques in ASP.NET.  State management is a importance features of ASP.Net.

All web applications are stateless. means in asp.net each page posted to the server, the state of controls is lost. In other word, all user can send request to web server but web server does not know about request from they coming same user or new user.

We must make web pages which will remember about the user. Using state management technique we identify the each user uniquely on same web pages. To preserve state of control we use state management technique in asp.net.

Types of State Management

  • Client Side State management
  • Server Side State management

Server Side State management

  1. Session State
  2. Application State

Client Side State management

  1. Cookies
  2. Hidden Fields
  3. View State
  4. Query String

We will learn all state management technique with an example in our next asp.net tutorial.

Related ASP.Net Topics :

Application State in C#.Net
View State in C#.Net


Subscribe us

If you liked this asp.net post, then please subscribe to our YouTube Channel for more asp.net video tutorials.

We hope that this asp.net tutorial helped you to understand about all types of state management in C#.


Next asp.net tutorial we will learn all state management technique with an example. Let’s start with Session Statein asp.net.


Leave a Reply

Your email address will not be published. Required fields are marked *