What is state management in ASP.NET?

What is state management in ASP.NET?

State management is implemented in order to retain information about the user requests. Web pages are stateless. Each request creates new page without retaining any previous information about the user requests. ASP.NET supports several State management techniques to maintain state information.

State management in ASP.NET can be classified into
1. Client-side state management
2. Server-side state management
ASP.NET Client-side state management and Server-side state management
ASP.NET - Client-side state management and Server-side state management - Client-side state management: This maintains information on the client's machine using Cookies, View State, and Query Strings..
What is Caching in ASP.NET?
ASP.NET - What is Caching in ASP.NET? - Caching technique allows to store/cache page output or application data on the client....
Advantages of Caching - ASP.NET
ASP.NET - Advantages of Caching - It increases performance of the application by serving user with cached output....
Post your comment