Control.Load 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Page 개체에 서버 컨트롤을 로드할 때 발생합니다.
public:
event EventHandler ^ Load;
public event EventHandler Load;
member this.Load : EventHandler
Public Custom Event Load As EventHandler
이벤트 유형
예제
// This is the constructor for a custom Page class.
// When this constructor is called, it associates the Control.Load event,
// which the Page class inherits from the Control class, with the Page_Load
// event handler for this version of the page.
public MyPage()
{
Load += new EventHandler(Page_Load);
}
' This is the constructor for a custom Page class.
' When this constructor is called, it associates the Control.Load event,
' which the Page class inherits from the Control class, with the Page_Load
' event handler for this version of the page.
Public Sub New()
AddHandler Load, AddressOf Page_Load
End Sub
설명
서버 컨트롤에 각 페이지 요청에서 발생하도록 설정된 처리 단계를 수행하도록 알 수 있습니다. 이 이벤트에서 상태 정보 보기 및 웹 양식 POST 데이터에 액세스할 수 있습니다. 페이지의 컨트롤 계층 구조 내에서 다른 서버 컨트롤에 액세스할 수도 있습니다.
참고
이벤트 중에 Page_Load
컨트롤에서 사용자 지정 템플릿을 설정하면 사용자 지정 템플릿에서 자식 컨트롤의 텍스트 값이 손실됩니다. 이는 양식 값이 이미 로드되었기 때문에 발생합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET