Control.OnLoad Method (EventArgs)

 

Raises the Load event.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

Protected Friend Overridable Sub OnLoad (
	e As EventArgs
)

Parameters

e
Type: System.EventArgs

The EventArgs object that contains the event data.

ASP.NET calls this method 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, call the base control's OnLoad method to notify subscribers to the event.

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

.NET Framework
Available since 1.1
Return to top
Show: