Posted on: 2/29/2012 6:15:35 AM | Views : 614

I am trying to make a custom Create User Wizard control but after I have done it up the page is still showing the default requirements. Can anyone tell me what I am doing wrong?
 
<asp:CreateUserWizard ID="CreateUserWizard" runat="server"> <WizardSteps> <asp:WizardStep ID="CreateUserWizardStep1" runat="server"> <p> User Name:<asp:TextBox ID="UserName" runat="server" /> <asp:RequiredFieldValidator ID="UserNameRequired" ControlToValidate="UserName" ErrorMessage="User Name is required." Display="Dynamic" runat="server" /> <br />Password: <asp:TextBox ID="Password" TextMode="Password" runat="server" /> <asp:RequiredFieldValidator ID="PasswordRequired" ControlToValidate="Password" ErrorMessage="Password is required." Display="Dynamic" runat="server" /> ...

Go to the complete details ...