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

WebForms Stepper Overview

This demo illustrates the RadStepper for ASP.NET AJAX control.

About RadStepper for ASP.NET AJAX

RadStepper is a server-side ASP.NET Web Forms wrapper over the Stepper for Kendo UI for jQuery. It is an intuitive UI component that visualizes progress by displaying a sequence of logical steps. The RadStepper could also be used for navigational purposes.

RadStepper and 120+ other controls are part of UI for ASP.NET AJAX, a comprehensive toolset taking care of the common functionality of your application, while leaving you with more time to work on its business logic.

Key Features

  • Built-in Section 508 and WCAG 2.1 АА accessibility, WAI-ARIA and RTL support
  • Built-in Icons
  • Customizable appearance
  • Operation Modes
  • Support for Client IconTemplate
  • Flexible client-side API
  • Visual Appeal - shipped with a rich set of skins for easy and consistent styling

More about Stepper for ASP.NET AJAX
  • DefaultCS.aspx
<%@ Page Language="c#" AutoEventWireup="true"  %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container" runat="server">
        <telerik:RadStepper runat="server" ID="RadStepper1" RenderMode="Lightweight" Linear="false">
            <Steps>
                <telerik:StepperStep Label="Personal Info" Icon="user" />
                <telerik:StepperStep Label="Education" Error="true" Icon="dictionary-add" />
                <telerik:StepperStep Label="Experience" Icon="flip-vertical" />
                <telerik:StepperStep Label="Attachments" Icon="attachment" />
                <telerik:StepperStep Label="Review" Icon="preview" Enabled="false" />
                <telerik:StepperStep Label="Submit" Icon="file-add" />
            </Steps>
        </telerik:RadStepper>
    </div>

    </form>
</body>
</html>

Support & Learning Resources

Find Assistance