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
注釈
各ページ要求で発生するように設定されている処理手順を実行するようにサーバー コントロールに通知します。 このイベントからビューステート情報と Web フォーム POST データにアクセスできます。 ページのコントロール階層内の他のサーバー コントロールにアクセスすることもできます。
注意
イベント中 Page_Load
にコントロールにカスタム テンプレートを設定すると、カスタム テンプレート内の子コントロールのテキスト値は失われます。 これは、フォーム値が既に読み込まれているために発生します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET