Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

A simple Wizard control (C#)

<%@ Page Language="C#" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Wizard server control</title> </head> <body>     <form id="form1" runat="server">         <asp:Wizard ID="Wizard1" Runat="server" SideBarEnabled="true"           ActiveStepIndex="0">             <WizardSteps>                 <asp:WizardStep ID="WizardStep1" Runat="server" Title="Step 1">                     This is the first step.</asp:WizardStep>                 <asp:WizardStep ID="WizardStep2" Runat="server" Title="Step 2">                     This is the second step.</asp:WizardStep>                 <asp:WizardStep ID="WizardStep3" Runat="server" Title="Step 3">                     This is the third and final step.</asp:WizardStep>             </WizardSteps>         </asp:Wizard>     </form> </body> </html>