Page.InitComplete Evento

Definição

Ocorrerá quando a inicialização da página for concluída.Occurs when page initialization is complete.

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

Tipo de evento

EventHandler

Comentários

O InitComplete evento é chamado no final do estágio de inicialização da página.The InitComplete event is called at the end of the page's initialization stage. Nesse estágio do ciclo de vida da página, todos os controles declarados na página são inicializados, mas o estado da página ainda não está preenchido.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. Você pode acessar os controles de servidor, mas eles ainda não conterão informações retornadas do usuário.You can access server controls, but they will not yet contain information returned from the user.

Para obter mais informações sobre como lidar com eventos, consulte manipulando e gerando eventos.For more information about how to handle events, see Handling and Raising Events.

Aplica-se a

Confira também