|
|||||||||||||||||||||
|
|||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
IntroductionASP.NET ViewState is a great mechanism that simplifies the life of ASP.NET developers. But, as everybody knows, the .NET Framework saves the ViewState data as a hidden field on your ASPX page. If your page has only a few controls, this is not a problem. But, if your page has some We will start our analysis thinking where the Framework needs to work with the data saved on the ViewState hidden field. The answer is: only on the server side. The system doesn't need to work with the ViewState data on the client side, so, if we start to save this data on the server instead of carrying all this from the server to the client and from the client to the server again, we will save a lot of time while loading our documents. You probably won't note the difference while loading the page on the same computer that the application is installed, but, test it using a dial-up connection and you will see what happens. You cold also see the the size of the source code generated with and without this technique. This example consist of a class that inherits the If you already have a project and want to start using this technique, all that you need to do is add a reference to the class that accompanies this example and inherit your "code-behind files" from it instead of the To develop this technique, I read a lot of articles over the internet, but, one really "opened my mind" of how this implementation could be done and the benefits of it. See more information on the Points of Interest Section. I included a demo project that you could download and use to test the implementation. Note that the demo project saves the ViewState to the session, which I think is the best place to store it. Using the codeAs I said, the implementation is very easy. So, let's start with my 'KEEPING THE VIEWSTATE OUT OF THE ASPX PAGE
'Autor.: Régis Daniel de Oliveira
'E-Mail: regisxp@hotmail.com
'Date..: 07/2005
'Reserach Source:
'http://www.eggheadcafe.com/articles/20040613.asp
Imports System.Configuration.ConfigurationSettings
Imports System.Diagnostics
Public Class VSPage
Inherits System.Web.UI.Page
Now, let's see the method responsible for saving the ViewState data, called Protected Overrides Sub _
SavePageStateToPersistenceMedium(ByVal viewState As Object)
Dim VSKey As String
'String that will hold the Unique Key
'used to reference this ViewState data
Debug.WriteLine(MyBase.Session.SessionID)
'Create the key based on the SessionID, on the Request.RawUrl
'and on the Ticks representated by the exact time
'while the page is being saved
VSKey = "VIEWSTATE_" & MyBase.Session.SessionID & "_" & _
Request.RawUrl & "_" & Date.Now.Ticks.ToString
'Check if the ServerSideViewState is Activated
If UCase(AppSettings("ServerSideViewState")) = "TRUE" Then
'Check were we will save the ViewState Data
If UCase(AppSettings("ViewStateStore")) = "CACHE" Then
'Store the ViewState on Cache
Cache.Add(VSKey, viewState, Nothing, _
Date.Now.AddMinutes(Session.Timeout), _
Cache.NoSlidingExpiration, _
Web.Caching.CacheItemPriority.Default, Nothing)
'The ViewStateData will be Saved on the SESSION
Else
Dim VsDataTable As DataTable
Dim DbRow As DataRow
'Check if the ViewState DataTable are on the Session
If IsNothing(Session("__VSDataTable")) Then
'No, it's not. Create it...
Dim PkColumn(1), DbColumn As DataColumn
VsDataTable = New DataTable("VState")
'Create the DataTable
'Column 1 - Name: VSKey - PrimaryKey
DbColumn = New DataColumn("VSKey", GetType(String))
VsDataTable.Columns.Add(DbColumn)
PkColumn(0) = DbColumn
VsDataTable.PrimaryKey = PkColumn
'Column 2 - Name: ViewStateData
DbColumn = New DataColumn("VSData", GetType(Object))
VsDataTable.Columns.Add(DbColumn)
'Column 3 - Name: DateTime
DbColumn = New DataColumn("DateTime", GetType(Date))
VsDataTable.Columns.Add(DbColumn)
Else
'The ViewState DataTable is already on the UserSession
VsDataTable = Session("__VSDataTable")
End If
'Check if we already have a ViewState saved with the same key.
'If yes, update it instead of creating a new row.
'(This is very dificult to happen)
DbRow = VsDataTable.Rows.Find(VSKey)
If Not IsNothing(DbRow) Then
'Row found!!! Update instead of creating a new one...
DbRow("VsData") = viewState
Else
'Create a new row...
DbRow = VsDataTable.NewRow
DbRow("VSKey") = VSKey
DbRow("VsData") = viewState
DbRow("DateTime") = Date.Now
VsDataTable.Rows.Add(DbRow)
End If
'Check if our DataTable is OverSized...
If Convert.ToInt16(AppSettings("ViewStateTableSize"))_
< VsDataTable.Rows.Count Then
Debug.WriteLine("Deleting ViewState Created On " _
& DbRow(2) & ",ID " & DbRow(0))
VsDataTable.Rows(0).Delete() 'Delete the 1st line.
End If
'Store the DataTable on the Session.
Session("__VSDataTable") = VsDataTable
End If
'Register a HiddenField on the Page,
'that contains ONLY the UniqueKey generated.
'With this, we'll be able to find with ViewState
'is from this page, by retrieving these value.
RegisterHiddenField("__VIEWSTATE_KEY", VSKey)
Else
'Call the normal process.
MyBase.SavePageStateToPersistenceMedium(viewState)
End If
End Sub
And now, let's see the method responsible to load the Protected Overrides Function LoadPageStateFromPersistenceMedium() As Object
'Verifica se o ServerSideViewState está ativado
If UCase(AppSettings("ServerSideViewState")) = "TRUE" Then
Dim VSKey As String 'ViewState UniqueKey
VSKey = Request.Form("__VIEWSTATE_KEY")
'Request the Key from the page and validade it.
If Not VSKey.StartsWith("VIEWSTATE_") Then
Throw New Exception("Invalid VIEWSTATE Key: " & VSKey)
End If
'Verify which <SPAN id=BABID_Results7>modality was used to save ViewState
If UCase(AppSettings("ViewStateStore")) = "CACHE" Then
Return Cache(VSKey)
Else
Dim VsDataTable As DataTable
Dim DbRow As DataRow
VsDataTable = Session("__VSDataTable")
DbRow = VsDataTable.Rows.Find(VSKey)
If IsNothing(DbRow) Then
Throw New Exception("VIEWStateKey not Found. " & _
"Consider increasing the ViewStateTableSize" & _
" parameter on Web.Config file.")
End If
Return DbRow("VsData")
End If
Else
'Return the ViewState using the Norma Method
Return MyBase.LoadPageStateFromPersistenceMedium()
End If
End Function
End Class
And now, this is what we need to insert on our config file Web.Config: <!-- application specific settings -->
<appSettings>
<!--ServerSideViewState: Defines if ViewState
will be saved on the Server: True|False-->
<add key="ServerSideViewState" value="True"/>
<!--ViewStateStore: Defines where we'll save the ViewState: Cache|Session-->
<add key="ViewStateStore" value="Session" />
<!--ViewStateCacheFSSize: Define the maximum Number
of viewStates will be saved when ViewStateStore = Session -->
<add key="ViewStateTableSize" value="150" />
</appSettings>
Points of InterestA lot of research was done to implement the login presented on this article. One of the most interesting sources is this. If you would like to know more about these techniques and see the result of some stress tests, follow the link. ConclusionViewState really simplifies the development of ASP.NET applications, but due to increase in the page load time, some developers don't like to use it. With this technique, you could have all the advantages of using ViewState on your projects without worry about the size of the generated page source code. | ||||||||||||||||||||