Wizard.OnFinishButtonClick Method
.NET Framework 3.0
Raises the FinishButtonClick event.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected void OnFinishButtonClick ( WizardNavigationEventArgs e )
protected function OnFinishButtonClick ( e : WizardNavigationEventArgs )
Not applicable.
Parameters
- e
A WizardNavigationEventArgs containing the event data.
The FinishButtonClick event is raised when the Finish button is clicked.
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
The OnFinishButtonClick 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 OnFinishButtonClick method in a derived class, be sure to call the OnFinishButtonClick method of the base class so that registered delegates receive the event.Community Additions
ADD
Show: