New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
ActiveStepChanged
The server-side ActiveStepChanged event occurs when occurs when the active step is changed.
The ActiveStepChanged 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.
Use the ActiveStepChanged event handler to respond when the user changes the active step.
C#
protected void RadWizard1_ActiveStepChanged(object sender, EventArgs e)
{
int activeStepIndex = (sender as RadWizard).ActiveStep.Index;
}