What is the state management in asp net?

sid
sid
Member
120 Points
9 Posts

hi,

What is the state management in asp net?

Views: 9445
Total Answered: 1
Total Marked As Answer: 0
Posted On: 10-Dec-2015 01:39

Share:   fb twitter linkedin
Answers
Brian
Brian
Moderator
2232 Points
14 Posts
         

Since HTTP (Hyper Text Transfer Protocol) is a stateless protocol, when the client (client requests any page after getting response) disconnects from the server, the ASP.NET discards the page objects. So to maintain state between multiple page request ASP.NET uses different mechanism known as State Management.

We can use Client side as well as Server side state management techniques:

Client side:

  1. Hidden Field
  2. View State
  3. Cookies
  4. Control State
  5. Query Strings

Server side:

  1. Session
  2. Application
Posted On: 01-Jan-2016 22:12
 Log In to Chat