Click to See Complete Forum and Search --> : How to Completely Remove Viewstate in your ASP.NET page
mendhak
Mar 13th, 2008, 03:52 PM
Protected Overrides Sub SavePageStateToPersistenceMedium(ByVal viewState As Object)
End Sub
Protected Overrides Function LoadPageStateFromPersistenceMedium() As Object
Return Nothing
End Function
Protected Overrides Function SaveViewState() As Object
Return Nothing
End Function
koolprasad2003
Jun 21st, 2008, 07:42 AM
here is another code
To disable a page’s View State, add the code below in the Page class of the page. In this example, the page’s class name is ShowOrdersTablePage.
C#:
public ShowOrdersTablePage()
{
this.Init += new EventHandler(Page_Init);
}
private void Page_Init(object sender, System.EventArgs e)
{
this.EnableViewState = false;
}
Visual Basic .NET:
' Disable the View State in the page.M
Private Sub MyPage_Init_DisableViewState(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Init
Me.EnableViewState = False
End Sub
thankx
koolprasad20003:)
mendhak
Jun 23rd, 2008, 02:59 AM
Hmm, I should mention that the first post completely removes all viewstate (you end up with a hidden field on the page called __viewstate, but no value). I must have made this thread in a rush, I will update it now. :)
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.