FinishButtonClick
The server-side FinishButtonClick event occurs when a the finish button is clicked.
The OnFinishButtonClick event handler receives two arguments:
The RadWizard that contains the active step. This argument is of type object, but can be cast to the RadWizard type.
-
A WizardEventArgs object. This object has two properties:
CurrentStepIndex - the current step index.
CurrentStep - a reference the current step.
NextStepIndex - the next step index.
NextStep - a reference to the next step.
Use the OnFinishButtonClick event handler to respond when a the finish button is clicked.
protected void RadWizard1_FinishButtonClick(object sender, WizardEventArgs e)
{
Label1.Text = "You clicked on Finish button";
}
Protected Sub RadWizard1_FinishButtonClick(sender As Object, e As WizardEventArgs) Handles RadWizard1.FinishButtonClick
Label1.Text = "You clicked on Finish button"
End Sub