Hi,
I want to know, In which type of web application I should use Application state management?
thanks
Loading
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.
Anuja PawarPosted Jan 3, 2012, 2:52 AM
Hope your query is resolved. Good luck :)
Alok PandeyPosted Jan 3, 2012, 2:24 AM
Anuja PawarPosted Jan 3, 2012, 2:01 AM
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
For more detail read this article
http://www.c-sharpcorner.com/UploadFile/freelance91/ASPNETstatemanagementtechniques01012007212655PM/ASPNETstatemanagementtechniques.aspx
Priya LingePosted Jan 3, 2012, 12:24 AM
Please check below links.
http://docs.oracle.com/cd/E14571_01/web.1111/b31974/bcstatemgmt.htm
http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx
Hope this will help you.
Thanks.