Follow me on Twitter at Twitter.com/wbm
FYI, I'm blogging most of my stuff over at More Wally now.
You might want to add my rss feed to your reader at:http://morewally.com/cs/blogs/wallym/rss.aspx
ASP.NET Wizard control in Whidbey aka ASP.NET 2.0 - Wallace B. McClure

Wallace B. McClure

All About Wally McClure - The musings of Wallym on .NET, Sql, ASP.NET, and other crazy shenanigans

News

Personal Blog

Work Blog

.NET

Book Authors

Business

Family

Friends

Georgia Tech Bloggers

Personal

ASP.NET Wizard control in Whidbey aka ASP.NET 2.0

Have you seen the Wizard Control in Whidbey Beta 1?  Very cool idea.  Basically, it allows you to complete a series of steps in a fairly easy manner.  I did some basics with it.  Here is the simple code.

<asp:Wizard ID="Wizard1" Runat="server" OnFinishButtonClick="Wizard1_FinishButtonClick" ActiveStepIndex="1">

    <WizardSteps>

        <asp:WizardStep Runat="server" Title="Step 1">

            First Name:<asp:TextBox Runat="server" ID="txtFirstName"></asp:TextBox>

        </asp:WizardStep>

        <asp:WizardStep Runat="server" Title="Step 2">

            Email Address:

            <asp:TextBox Runat="server" ID="txtEmailAddress"></asp:TextBox>

        </asp:WizardStep>

        <asp:WizardStep Runat="server" Title="Step 3">

        </asp:WizardStep>

    </WizardSteps>

</asp:Wizard>

 

Comments

TrackBack said:

# November 18, 2004 3:37 PM

TrackBack said:

# November 18, 2004 3:38 PM
Leave a Comment

(required) 

(required) 

(optional)

(required)