New to Telerik UI for ASP.NET AJAX? Start 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;
}
}