Wizard.OnSideBarButtonClick Method
Assembly: System.Web (in system.web.dll)
protected void OnSideBarButtonClick ( WizardNavigationEventArgs e )
protected function OnSideBarButtonClick ( e : WizardNavigationEventArgs )
Parameters
- e
A WizardNavigationEventArgs containing event data.
The SideBarButtonClick event is raised when a button on the sidebar area is clicked.
Note |
|---|
| 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 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.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note