what is state management,what is the purpose of it,how it
will be implemented in real time?

Answer Posted / sachin

There are 2 types State Management:

1. Client – Side State Management
This stores information on the client's computer by
embedding the information into a Web page, a uniform
resource locator(url), or a cookie. The techniques available
to store the state information at the client end are listed
down below:

a. View State – Asp.Net uses View State to track the values
in the Controls. You can add custom values to the view
state. It is used by the Asp.net page framework to
automatically save the values of the page and of each
control just prior to rendering to the page. When the page
is posted, one of the first tasks performed by page
processing is to restore view state.

b. Control State – If you create a custom control that
requires view state to work properly, you should use control
state to ensure other developers don’t break your control by
disabling view state.

c. Hidden fields – Like view state, hidden fields store data
in an HTML form without displaying it in the user's browser.
The data is available only when the form is processed.

d. Cookies – Cookies store a value in the user's browser
that the browser sends with every page request to the same
server. Cookies are the best way to store state data that
must be available for multiple Web pages on a web site.

e. Query Strings - Query strings store values in the URL
that are visible to the user. Use query strings when you
want a user to be able to e-mail or instant message state
data with a URL.

2. Server – Side State Management
a. Application State - Application State information is
available to all pages, regardless of which user requests a
page.

b. Session State – Session State information is available to
all pages opened by a user during a single visit.

Both application state and session state information is lost
when the application restarts. To persist user data between
application restarts, you can store it using profile
properties.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between web.config and machine.config in ASP.NET?

593


Define static function?

564


What are directives in asp.net? List down all the important directives.

496


What are the various types of cookies in asp.net?

538


Explain what is an assembly?

554






How many types of triggers are there in update panel?

567


What does occur first in ASP.Net, Authentication or Authorization?

558


How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?

3398


What does the hotspot class in .net do?

563


How can we Validate a Controls in ASP.NET page using JavaScript?

626


What is a 1x1 pixel?

526


What is the current version of asp.net?

493


How many types of Cookies are available in ASP.NET?

580


Explain repository pattern in asp.net mvc? : asp.net mvc

521


Asp pages that worked pefectly on windows 2000 server and iis 5.0 do not work on windows 2003 server with iis 6.0. Asp.net pages work fine. Why?

557