MobilePage.OnViewStateExpire(EventArgs) Method

Definition

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

e
EventArgs

An object defined by an EventArgs object that contains event data.

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.

Applies to

See also