This documentation is archived and is not being maintained.
Page.LoadPageStateFromPersistenceMedium Method
.NET Framework 1.1
Loads any saved view-state information to the Page object. Override this method if you want to load the Page view-state information in anything other than a hidden field.
[Visual Basic] Protected Overridable Function LoadPageStateFromPersistenceMedium() _ _ As Object [C#] protected virtual object LoadPageStateFromPersistenceMedium(); [C++] protected: virtual Object* LoadPageStateFromPersistenceMedium(); [JScript] protected function LoadPageStateFromPersistenceMedium() : Object;
Return Value
The saved view state.
Remarks
If you want to specify something other than hidden fields to save view state when using this method, you must also override the SaveStateToPersistenceMedium method.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
Show: