ControlAdapter.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:
 virtual void OnLoad(EventArgs ^ e);
public virtual void OnLoad (EventArgs e);
abstract member OnLoad : EventArgs -> unit
override this.OnLoad : EventArgs -> unit
Public Overridable Sub OnLoad (e As EventArgs)

Parameters

e
EventArgs

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

Implements

Remarks

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

Applies to

See also