State Management in ASP.Net

State Management in Asp.Net

State Management

In article we will discuss about State Management Technique in Asp.Net.Generally Browsers are always stateless.The browser communicate with the server using HTTP Protocol. As we all know HTML is a stateless language.

Here, stateless means whenever we visit a website, our browser communicate with the respective server depends upon our request. It means that web server does not have any idea about the requests from where they coming.That means from same client or new clients. On each request web pages are created and destroyed .

So every Web Application needs to maintain state in one way. To overcome this situation Asp.Net provides state management techniques.

Types of State Management Technique:

Asp.net Technology provides two types of state management technique.

  1. Client side state management
  2. Server side state management