Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
My code
XML
<WizardSteps>
       <asp:WizardStep ID="WizardStep1" runat="server" Title="Introduction">
           ...
       </asp:WizardStep>
       <asp:WizardStep ID="WizardStep2" runat="server" Title="Name">
           ...
       </asp:WizardStep>


Here I got title of asp:WizardStep merge with one another,I dont know y? Any suggestion pls
Posted
Comments
Rob Branaghan 19-Nov-12 10:37am    
Can you post more of the code?
As it is looking like you are missing the closing tag for WizardSteps.

1 solution

Make sure you are closing the wizard steps, as your code doesn't include a closing tag....

ASP
<asp:Wizard ID="Wizard1" Runat="server">
    <WizardSteps>
        <asp:WizardStep Runat="server" Title="Step 1">
        </asp:WizardStep>
        <asp:WizardStep Runat="server" Title="Step 2">
        </asp:WizardStep>
    </WizardSteps>
</asp:Wizard>



Reference:
http://msdn.microsoft.com/en-us/library/fs0za4w6(v=vs.100).aspx[^]
ASP.NET 2.0 Wizard Control[^]
http://www.4guysfromrolla.com/articles/061406-1.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900