Page.InitComplete Event

Definition

Occurs when page initialization is complete.

public:
 event EventHandler ^ InitComplete;
public event EventHandler InitComplete;
member this.InitComplete : EventHandler 
Public Custom Event InitComplete As EventHandler 

Event Type

Remarks

The InitComplete event is called at the end of the page's initialization stage. At this stage of the page's life cycle, all declared controls on the page are initialized, but the page's state is not yet populated. You can access server controls, but they will not yet contain information returned from the user.

For more information about how to handle events, see Handling and Raising Events.

Applies to

See also