New to Telerik UI for ASP.NET AJAXStart a 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:

C#
protected void RadWizard1_NextButtonClick(object sender, Telerik.Web.UI.WizardEventArgs e)
{
    if (false)
    {
        e.CurrentStep.Active = true;
    }
}
Not finding the help you need?
Contact Support