please tell me about state management in asp.net
state management
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jun 20, 2013, 11:18 PM
Please refer below MSDN link it might help you.
http://msdn.microsoft.com/en-us/library/75x4ha6s(v=vs.100).aspx
http://msdn.microsoft.com/en-us/library/y5y3c2c5(v=vs.71).aspx
Raj KumarPosted Jun 20, 2013, 10:59 PM
A new instance of the Web page class is created each time the page is posted to the server. In traditional Web programming, this would typically mean that all information associated with the page and the controls on the page would be lost with each round trip. For example, if a user enters information into a text box, that information would be lost in the round trip from the browser or client device to the server.
To overcome this inherent limitation of traditional Web programming, ASP.NET includes several options that help you preserve data on both a per-page basis and an application-wide basis. These features are as follows:
View state
Control state
Hidden fields
Cookies
Query strings
Application state
Session state
Profile Properties
View state, control state, hidden fields, cookies, and query strings all involve storing data on the client in various ways. However, application state, session state, and profile properties all store data in memory on the server. Each option has distinct advantages and disadvantages, depending on the scenario.
Sunny SharmaPosted Jun 19, 2013, 7:34 AM
Refer to the links below:
http://www.codeproject.com/Articles/331962/A-Beginner-s-Tutorial-on-ASP-NET-State-Management
http://www.c-sharpcorner.com/uploadfile/nipuntomar/state-management-in-Asp-Net/
These will give you a good start on State Management.
Further you might like to explore these links also,
http://www.codeproject.com/Articles/492397/State-Management-in-ASP-NET-Introduction
http://www.codeproject.com/Articles/17191/ASP-Net-State-Management-Techniques
Mark this as answer if it helps.
Cheers!