What is view state management in asp net?

View state is another client side state management mechanism provided by ASP.NET to store user’s data, i.e., sometimes the user needs to preserve data temporarily after a post back, then the view state is the preferred way for doing it. It stores data in the generated HTML using hidden field not on the server.Click to…

View state is another client side state management mechanism provided by ASP.NET to store user’s data, i.e., sometimes the user needs to preserve data temporarily after a post back, then the view state is the preferred way for doing it. It stores data in the generated HTML using hidden field not on the server.Click to see full answer. Accordingly, what are the State management options in asp net? Client-Side State Management techniques are, View State. Hidden field. Cookies. Control State. Query Strings. Also, what is state management technique? State management is the technique that is used to maintain user and page information over multiple requests while browsing the web. HTTP is a stateless protocol. It stores the user’s specific information. It can store any type of object. For every user Session data store separately, means session is user specific. Hereof, what is view state and how it works in asp net? View State. 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.What do you mean by state management?State management refers to the management of the state of one or more user interface controls such as text fields, OK buttons, radio buttons, etc. in a graphical user interface. In this user interface programming technique, the state of one UI control depends on the state of other UI controls.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.