ASP.Net State management
ASP.Net State management What is State Management? State management is the process by which you maintain state and page information over multiple requests for the same or different pages. ASP.NET includes several options that help you preserve data on both a per-page basis and an application-wide basis. Types of State Management There are two basic types of State Management: 1. Client-Based State Management 2. Server-Based State Management Client-Based State Management: Client based state management techniques stores data on the client in various ways. Client based state management techniques are: A. View state B. Control state C. Hidden fields D. Cookies E. Query strings View state: The view state represents t...