Explain State management in ASP .Net.

State Management means maintaining the state of the object. The object here refers to a web page/control.

There are two types of State management, Client Side, and Server side.

  • Client-Side – Storing the information in the Page or Client’s System. They are reusable, simple objects.
  • Server Side – Storing the information on the Server. It is easier to maintain the information on the Server rather than depending on the client for preserving the state.