| ASP.NET FAQS | |
State management is the process by which you maintain state and page information over multiple requests for the same or different pages.
|
|
Asp.Net Pages are destroyed and re-created with each round trip to the server; therefore, page information will not exist beyond the life cycle of a single page.
|
|
ASP.NET provides multiple ways to maintain state between server round trips this can be either client side or server side.
Client Side State Management options: Storing page information using client-side options doesn't use server resources.
|
|
Advantages:
|
|
| ASP.NET FAQS | ViewState >> |
Interview Questions on State Management
FAQS on ASP.NET StateManagement