Control.Load Ereignis
Definition
public:
event EventHandler ^ Load;
public event EventHandler Load;
member this.Load : EventHandler
Public Custom Event Load As EventHandler
Ereignistyp
Beispiele
// 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
Hinweise
Benachrichtigt das Server Steuerelement, alle Verarbeitungsschritte auszuführen, die auf jede Seiten Anforderung festgelegt werden.Notifies the server control to perform any processing steps that are set to occur on each page request. Sie können auf Ansichts Zustandsinformationen und Webformular-Post-Daten aus diesem Ereignis zugreifen.You can access view state information and Web form POST data from this event. Sie können auch auf andere Server Steuerelemente in der Steuerelement Hierarchie der Seite zugreifen.You can also access other server controls within the page's control hierarchy.
Hinweis
Wenn Sie während des-Ereignisses eine benutzerdefinierte Vorlage in einem-Steuerelement festlegen Page_Load
, gehen die Textwerte der untergeordneten Steuerelemente in der benutzerdefinierten Vorlage verloren.If you set a custom template in a control during the Page_Load
event, the text values of child controls in the custom template will be lost. Dies liegt daran, dass die Formular Werte bereits geladen wurden.This occurs because the form values have already been loaded.