MobileControl.OnLoad(EventArgs) Method

Definition

Raises the Unload event. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 override void OnLoad(EventArgs ^ e);
protected override void OnLoad (EventArgs e);
override this.OnLoad : EventArgs -> unit
Protected Overrides Sub OnLoad (e As EventArgs)

Parameters

e
EventArgs

An EventArgs object that contains the event data.

Exceptions

the control contains custom attributes and the current page does not allow custom attributes on controls.

Remarks

This method notifies the server control that it should perform actions common to each HTTP request for the page it is associated with, such as setting up a database query. At this stage in the page lifecycle, server controls in the hierarchy are created and initialized, view state is restored, and form controls reflect client-side data.

Use the IsPostBack property to determine whether the page is being loaded in response to a client postback, or if it is being loaded and accessed for the first time.

Applies to

See also