Page.LoadComplete Event
.NET Framework 2.0
Occurs at the end of the load stage of the page's life cycle.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event EventHandler^ LoadComplete { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ public void add_LoadComplete (EventHandler value) /** @event */ public void remove_LoadComplete (EventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The LoadComplete event occurs after all postback data and view-state data is loaded into the page and all controls on the page. In order for view state to work for controls that are added dynamically, they must be added in or before the pre-render stage of the page life cycle.
For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: