Control.Load イベント
アセンブリ: System.Web (system.web.dll 内)

public: event EventHandler^ Load { void add (EventHandler^ value); void remove (EventHandler^ value); }
/** @event */ public void add_Load (EventHandler value) /** @event */ public void remove_Load (EventHandler value)

各ページ要求に対して発生するように設定された処理手順を実行するように、サーバー コントロールに通知します。ビューステート情報にアクセスし、このイベントからポスト データを作成できます。ページのコントロール階層構造の中で、他のサーバー コントロールにもアクセスできます。

' 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
// 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 MyPage() { add_Load(new EventHandler(Page_Load)); } //MyPage

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からControl.Load イベントを検索する場合は、下記のリンクをクリックしてください。

- Control.Load イベントのページへのリンク