<%@ 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>
|