I'm new to the ASP.NET's Wizard control and couldn't make it work. I guess there is a minor issue in the code that prevent the wizard from displaying. Here is the code snippet that I put inside a server form.
<asp:Wizard id="Wizard1" runat="server" >
<asp:WizardSteps>
<asp:WizardStep runat="server" id="firstStep" Title="First step">
What is your name<asp:TextBox id="txtName" />
</asp:WizardStep>
<asp:WizardStep runat="server" AllowReturn="false" id="lastStep" Title="Last step">
That's all for today. Good bye.
</asp:WizardStep>
</asp:WizardSteps>
</asp:Wizard>