Wizard::PreviousButtonClick Event

 

Occurs when the Previous button is clicked.

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

public:
event WizardNavigationEventHandler^ PreviousButtonClick {
	void add(WizardNavigationEventHandler^ value);
	void remove(WizardNavigationEventHandler^ value);
}

The PreviousButtonClick event is raised when the Previous button on the Wizard control is clicked. Use the PreviousButtonClick event to provide additional processing when the Previous button is clicked.

For more information about handling events, see NIB: Consuming Events.

The following code example demonstrates how to specify an event handler for the PreviousButtonClick event. Each time the Previous button is clicked, the BorderWidth property for the Wizard control is decreased by 1 pixel, as measured by the Unit class.

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

.NET Framework
Available since 2.0
Return to top
Show: