MobilePage.OnViewStateExpire(EventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Handles an exception caused by an expired view state on postback. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
protected:
virtual void OnViewStateExpire(EventArgs ^ e);
protected virtual void OnViewStateExpire (EventArgs e);
abstract member OnViewStateExpire : EventArgs -> unit
override this.OnViewStateExpire : EventArgs -> unit
Protected Overridable Sub OnViewStateExpire (e As EventArgs)
Parameters
Exceptions
The session state has expired.
-or-
The session cookie from the client is invalid.
-or-
The session state history has exceeded its allocated size.
Remarks
If you expect to restore a page from a view state, and the page's underlying session has expired, this method's default implementation raises an exception. You can override this method, perform custom handling to restore the page state without relying on view state, and return without calling the base implementation.