IControlAdapter.OnLoad(EventArgs) Method

Definition

Loads data that pertains to a control, a page, or a device adapter. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 void OnLoad(EventArgs ^ e);
public void OnLoad (EventArgs e);
abstract member OnLoad : EventArgs -> unit
Public Sub OnLoad (e As EventArgs)

Parameters

e
EventArgs

An object (defined by EventArgs) that contains event data.

Remarks

The OnLoad method is inherited from the control's parent. If the control is a MobileControl control, then this method is inherited from the System.Web.UI.Control class; if the control is a MobilePage control, then this method is inherited from the System.Web.UI.Page class.

Applies to

See also