View State is the method to preserve the Value of the Page and Controls between round trips . It is a Page-Level State Management technique. View State is turned on by default and normally serializes the data in every control on the page regardless of whether it is actually used during a post-back.
Read moreWhat is difference between session and application state?
A session is usually for a user and only lasts from when they login to when they logout (or get timed out). Application State has a much longer lifetime, is shared between all users, and is only cleared when the process is restarted.
Read moreWhat is difference between session and application state?
A session is usually for a user and only lasts from when they login to when they logout (or get timed out). Application State has a much longer lifetime, is shared between all users, and is only cleared when the process is restarted.
Read moreWhat are the advantages of application state?
Advantages of application state: Application object memory relased when we removed . Multi user can able to access application variable. To avoid deadlock or conflict we should use Lock and Unlock when we use write or update in the application object. Other application can’t access this application values.
Read moreWhat are the advantages of application state?
Advantages of application state: Application object memory relased when we removed . Multi user can able to access application variable. To avoid deadlock or conflict we should use Lock and Unlock when we use write or update in the application object. Other application can’t access this application values.
Read more