Interview Question
Qus: Explain State management in ASP .Net
Answers (2)
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.
There are two types of state management techniques: client side and server side.
1) Client side
-Hidden Field
-View State
-Cookies
-Control State
-Query Strings
2) Server side
-Session
-Application