Page.InitComplete Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.