ControlAdapter::OnLoad Method (EventArgs^)
.NET Framework (current version)
Overrides the OnLoad method for the associated control.
Assembly: System.Web (in System.Web.dll)
If there is an adapter attached to a Control object and the OnLoad method is overridden, the override method is called instead of the Control::OnLoad method.
Override the OnLoad method to perform target-specific processing in the Load stage of the control lifecycle. Typically, these are functions that should be performed for each client request.
Notes to Inheritors:
When you inherit from the ControlAdapter class and the adapter overrides the OnLoad method, the adapter must call the corresponding base class method, which in turn calls the Control::OnLoad method. If Control::OnLoad is not called, the Control::Load event will not be raised.
.NET Framework
Available since 2.0
Available since 2.0
Show: