I don't understand why I am getting the error:
CreateUserWizard1: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID UserName for the username.
My wizard step:
<asp:WizardStep ID="WizardStep1" runat="server" Title="Your preferred login information"> <table border="0"> <tr> <td align="center" colspan="2" class="style1"> Sign Up for Your New Account</td> </tr> <tr> <td align="right"> <asp:Label ID="UserNameLabel" runat="server">User Name:</asp:Label> </td> ...

Go to the complete details ...