;
State Management: To manage the state of Web Pages/ User Data we use the state management technique. The reason to manage state is that browser and HTTP/HTTPs are stateless. Each time when user send request to the web server a new object of the page is created.
We can manage the state at different level:
We can manage the state in asp.net in the following ways:
Client Side State Management: In this type of state management all information related to state are stored at client machine or in the page user is looking into. Server does not store any information b/w client to server round trip.
There are multiple ways to manage state at client side:
Server Side State Management: In this type of state management all information related to state are stores at server machine. Server sends less information to client.