System.Web.UI Namespace Control Class
Occurs when the control is loaded to the Page object.
[ VB ]
Public Event Load As EventHandler
[ C# ]
public event EventHandler Load;
[ C++ ]
public: __event EventHandler* Load;
In [ JScript ], you can handle the events defined by a class, but you cannot define your own.
The event handler receives an EventArgs containing data related to the Load event.
Notifies the server control to perform any processing steps that are set to occur on each page request. You can acess view state information and form POST data from this event. You can also access other server controls within the page's control hierarchy.
Control Members