Control.Load イベント
サーバー コントロールが Page オブジェクトに読み込まれると発生します。
Public Event Load As EventHandler
[C#]
public event EventHandler Load;
[C++]
public: __event EventHandler* Load;
[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。
イベント データ
イベント ハンドラが EventArgs 型の引数を受け取りました。
解説
各ページ要求に対して発生するように設定された処理手順を実行するように、サーバー コントロールに通知します。ビューステート情報にアクセスし、このイベントから POST データを作成できます。ページのコントロール階層構造の中で、他のサーバー コントロールにもアクセスできます。
使用例
' 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 'New
[C#]
// 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);
}
[C++]
// 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()
{
ctlOne = new MyControl();
Load += new EventHandler(this, &MyPage::Page_Load);
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ
参照
Control クラス | Control メンバ | System.Web.UI 名前空間 | コントロール実行の有効期間 | Web フォーム ページの処理