Managing State
State management is an important aspect of any Web application. Because state information is lost between
subsequent requests, ASP.NET provides a variety of way to preserve state both server-side and client-side,
when your application or controls need to round-trip information across requests. This section demonstrates
some of the available state management features.
Using Application State
This sample illustrates the use of application state to read a dataset in
Application_Start. The HttpApplicationState collection used above is primarily meant
for backward-compatibility with classic ASP and will be familiar to ASP developers. However,
the use of static fields in ASP.NET is generally preferred over the use of HttpApplicationState.
VB Application State
Because an application and all the objects it stores can be concurrently accessed
by different threads, it is better to store only infrequently modified data with
application scope. Ideally an object is initialized in the Application_Start event
and further access is read-only.
In the following sample a file is read in Application_Start (defined in the Global.asax file)
and the content is stored in a DataView object in the application state.
Sub Application_Start()
Dim ds As New DataSet()
Dim fs As New FileStream(Server.MapPath("schemadata.xml"),
FileMode.Open,FileAccess.Read)
Dim reader As New StreamReader(fs)
ds.ReadXml(reader)
fs.Close()
Dim view As New DataView (ds.Tables(0))
Application("Source") = view
End Sub
VB
In the Page_Load method, the DataView is then retrieved and used to populate a GridView object:
Sub Page_Load(sender As Object, e As EventArgs)
Dim Source As New DataView = CType(Application("Source"), DataView)
...
MyGridView.DataSource = Source
...
End Sub
VB
The advantage of this solution is that only the first request pays the price of retrieving
the data. All subsequent requests use the already existing DataView object. As the
data is never modified after initialization, you do not have to make any provisions for serializing access.
Using Session State
The following sample illustrates the use of session state to store volatile user preferences.
VB Session State
To provide individual data for a user during a session, data can be stored
with session scope. In the following sample, values for user preferences are initialized
in the Session_Start event in the Global.asax file.
Sub Session_Start()
Session("BackColor") = "beige"
...
End Sub
VB
In the following
customization page, values for user preferences are modified in the Submit_Click event handler according to user input.
Protected Sub Submit_Click(sender As Object, e As EventArgs)
Session("BackColor") = BackColor.Value
...
Response.Redirect(State("Referer").ToString())
End Sub
VB
The individual values are retrieved using the GetStyle method:
Protected GetStyle(key As String) As String
Return(Session(key).ToString())
End Sub
VB
The GetStyle method is used to construct session-specific styles:
<style>
body
{
font: <%=GetStyle("FontSize")%> <%=GetStyle("FontName")%>;
background-color: <%=GetStyle("BackColor")%>;
}
a
{
color: <%=GetStyle("LinkColor")%>
}
</style>
To verify that the values are really stored with session scope,
open the sample page twice, then change one value in the first
browser window and refresh the second one. The second window
picks up the changes because both browser instances share a
common Session object.
Configuring session state:
Session state features can be configured via the <sessionState>
section in a web.config file. To double the default timeout of
20 minutes, you can add the following to the web.config file of an
application:
<sessionState
timeout="40"
/>
If cookies are not available, a session can be tracked
by adding a session identifier to the URL. This can be enabled by setting
the following:
<sessionState
cookieless="true"
/>
By default, ASP.NET will store the session state in the same process that processes the request, just as ASP does. Additionally, ASP.NET can
store session data in an external process, which can even reside
on another machine. To enable this feature:
- Start the ASP.NET state service, either using the Services snap-in or by
executing "net start aspnet_state" on the command line. The state service
will by default listen on port 42424. To change the port, modify the
registry key for the service:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\aspnet_state\Parameters\Port
- Set the mode attribute of the <sessionState> section to "StateServer".
- Configure the stateConnectionString attribute with the values of the
machine on which you started aspnet_state.
The following sample assumes that the state service is running
on the same machine as the Web server ("localhost") and uses the default
port (42424):
<sessionState
mode="StateServer"
stateConnectionString="tcpip=localhost:42424"
/>
Note that if you try the sample above with this setting, you can reset
the Web server (enter iisreset on the command line) and the session state
value will persist.
Using Client-Side Cookies
The following sample illustrates the use of client-side cookies to store volatile user preferences.
VB Cookies
Storing cookies on the client is one of the methods that ASP.NET's session
state uses to associate requests with sessions. Cookies can also be used
directly to persist data between requests, but the data is then stored
on the client and sent to the server with every request. Browsers place
limits on the size of a cookie; therefore, only a maximum of 4096 bytes is guaranteed
to be acceptable.
When the data is stored on the client, the Page_Load method in the file
cookies1.aspx checks whether the client has sent a cookie. If not, a new
cookie is created and initialized and stored on the client:
Protected Sub Page_Load(sender As Object, e As EventArgs)
If Request.Cookies("preferences1") = Null Then
Dim cookie As New HttpCookie("preferences1")
cookie.Values.Add("ForeColor", "black")
...
Response.Cookies.Add(cookie)
End If
End Sub
VB
On the same page, a GetStyle method is used again to provide
the individual values stored in the cookie:
Protected Function GetStyle(key As String) As String
Dim cookie As HttpCookie = Request.Cookies("preferences1")
If cookie <> Null Then
Select Case key
Case "ForeColor"
Return(cookie.Values("ForeColor"))
Case ...
End Select
End If
Return("")
End Function
VB
Verify that the sample works by opening the cookies1.aspx page and modifying
the preferences. Open the page in another window, it should pick up the new
preferences. Close all browser windows and open the cookies1.aspx page again.
This should delete the temporary cookie and restore the default preference values.
VB Cookies (Persistent)
To make a cookie persistent between sessions, the Expires property on
the HttpCookie class has to be set to a date in the future. The following
code on the customization.aspx page is identical to the previous sample,
with the exception of the assignment to Cookie.Expires:
Protected Sub Submit_Click(sender As Object, e As EventArgs)
Dim cookie As New HttpCookie("preferences2")
cookie.Values.Add("ForeColor",ForeColor.Value)
...
cookie.Expires = DateTime.MaxValue ' Never Expires
Response.Cookies.Add(cookie)
Response.Redirect(State("Referer").ToString())
End Sub
VB
Verify that the sample is working by modifying a value, closing all browser
windows, and opening cookies2.aspx again. The window should still show the
customized value.
Using View State
This sample illustrates the use of the ViewState property to store request-specific values.
VB View State
ASP.NET provides the server-side notion of a view state for each control. A control can save its
internal state between requests using the ViewState property on an instance of the class StateBag. The
StateBag class provides a dictionary-like interface to store objects associated with a string key.
The file pagestate1.aspx displays one visible panel and stores the index of it in the view
state of the page with the key PanelIndex:
Protected Sub Next_Click(sender As Object, e As EventArgs)
Dim PrevPanelId As String = "Panel" + ViewState("PanelIndex").ToString()
ViewState("PanelIndex") = CType(ViewState("PanelIndex") + 1, Integer)
Dim PanelId As String = "Panel" + ViewState("PanelIndex").ToString()
...
End Sub
VB
Note that if you open the page in several browser windows, each browser window will
initially show the name panel. Each window can independently navigate between the panels.
|