User-37275327 posted
In web architecture, every request is new (HTTP known as stateless) and there should be ways to keep preserve data on round trips. This is what is called state management.
Following are popular ways
- View state
- Control state
- Hidden fields
- Cookies
- Query strings
- Application state
- Session state
- Profile Properties
For more info
https://msdn.microsoft.com/en-us/library/75x4ha6s(v=vs.140).aspx