Updated: April 2009
Raises the Load event.
Protected Friend Overridable Sub OnLoad ( _ e As EventArgs _ )
Dim e As EventArgs Me.OnLoad(e)
protected internal virtual void OnLoad( EventArgs e )
protected public: virtual void OnLoad( EventArgs^ e )
protected internal function OnLoad( e : EventArgs )
ASP.NET calls this method in order to raise the Load event. If you are developing a custom control, you can override this method in order to provide additional processing. If you override this method, you typically call the base control's OnLoad method. If the base control's OnLoad method is not called, subscribers to the event will not be notified.
Protected Overrides Sub OnLoad(ByVal e As EventArgs) MyBase.OnLoad(e) If _text Is Nothing Then _text = "Here is some default text." End If End Sub
// Override the OnLoad method to set _text to // a default value if it is null. protected override void OnLoad(EventArgs e) { base.OnLoad(e); if (_text == null) _text = "Here is some default text."; }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
Date
History
Reason
April 2009
Revised Remarks section and code example to clarify how the method is used.
Customer feedback.