Wizard.OnSideBarButtonClick Method (WizardNavigationEventArgs)

 

Raises the SideBarButtonClick event.

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

abstract OnSideBarButtonClick : 
        e:WizardNavigationEventArgs -> unit
override OnSideBarButtonClick : 
        e:WizardNavigationEventArgs -> unit

The SideBarButtonClick event is raised when a button on the sidebar area is clicked.

System_CAPS_noteNote

The SideBarButtonClick event does not raise an event if a Button control with the CommandName property set to Move is outside of the DataList control's sidebar list for the SideBarTemplate object.

Raising an event invokes the event handler through a delegate. For more information, see NIB: Raising an Event.

The OnSideBarButtonClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors:

When overriding the OnSideBarButtonClick method in a derived class, be sure to call the OnSideBarButtonClick method of the base class so that registered delegates receive the event.

The following code example demonstrates how to specify an event handler for the SideBarButtonClick event. Each time the SideBarButtonClick event is raised, a message is written to the Text property for Label1 with information on which sidebar area button was clicked.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: