New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Cancel Next Step Navigation

The navigation to the next WizardStep can be cancelled server-side by setting the current step as active in the RadWizard's NextButtonClick event handler:

protected void RadWizard1_NextButtonClick(object sender, Telerik.Web.UI.WizardEventArgs e)
{
    if (false)
    {
        e.CurrentStep.Active = true;
    }
}
In this article