Control.Load イベント

定義

サーバー コントロールが 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

注釈

各ページ要求で発生するように設定されている処理手順を実行するようにサーバー コントロールに通知します。 このイベントからビューステート情報と Web フォーム POST データにアクセスできます。 ページのコントロール階層内の他のサーバー コントロールにアクセスすることもできます。

注意

イベント中 Page_Load にコントロールにカスタム テンプレートを設定すると、カスタム テンプレート内の子コントロールのテキスト値は失われます。 これは、フォーム値が既に読み込まれているために発生します。

適用対象

こちらもご覧ください