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
於控件中設定自定義範本,則自定義範本中的子控件文字值將會遺失。 這是因為已經載入表單值。