Completly Removing ViewState WebFroms
Here is the code to completely remove view state from the page:
#region ViewState protected override void SavePageStateToPersistenceMedium(object viewState) { } protected override object LoadPageStateFromPersistenceMedium() { return null; } #endregionMake sure that none of the controls in the page rely on ViewState to function properly. {6230289B-5BEE-409e-932A-2F01FA407A92}
Does the EnableViewState="False" switch do something similar?
ReplyDeleteEnableViewState="False" will not remove everything. There is still some unneeded internals writtent to the View State. However, setting EnableViewState="False" is the first step in getting everything cleaned up.
ReplyDeleteHow to remove gridview viewstate except 1 label inside the grid view?
ReplyDeleteI get this Error-Message:
ReplyDeleteCompilerfehlermeldung: CS0115: "App_Template_MasterPage.SavePageStateToPersistenceMedium(object)": Es wurde keine passende Methode zum Überschreiben gefunden.