Use WizardStep : Wizard « Asp Control « ASP.Net






Use WizardStep

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Wizard ID="Wizard1" runat="server">
            <WizardSteps>
                <asp:WizardStep ID="stpWakeUp" runat="server" Title="Step 1">
                    <h2>Wake Up</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpShower" runat="server" Title="Step 2">
                    <h2>Shower</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpTakeMeds" runat="server" Title="Step 3">
                    <h2>Take Meds</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpBrushTeeth" runat="server" Title="Step 4">
                    <h2>Brush Teeth</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpGetDressed" runat="server" Title="Step 5 ">
                    <h2>Get Dressed</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpEatBreakfast" runat="server" Title="Step 6">
                    <h2>Eat Breakfast</h2>
                </asp:WizardStep>
                <asp:WizardStep ID="stpFinish" runat="server" Title="Step 7">
                    <h2>Finish</h2>
                </asp:WizardStep>
            </WizardSteps>
        </asp:Wizard>
    </div>
    </form>
</body>
</html>

 








Related examples in the same category

1.Basic Wizard
2.how to set up and use a wizard.
3.Wizard template
4.Checkout wizard
5.Checkout wizard (VB)
6.Wizard ActiveStepIndex
7.Wizard history
8.Wizard Demo
9.Wizard finish button click event