Hi All
I'm looking into using the standard CreateUserWizard in an application of mine. But cannot get the required error messages to display the markup I'm using is below.
<asp:CreateUserWizard ID="CreateUserWizard1" runat="server" BorderColor="DarkBlue"
BorderStyle="Solid" Width="350px" HeaderStyle-HorizontalAlign="Center" BackColor="#EFF3FB"
Font-Names="Verdana" Font-Size="10pt" RequireEmail="true"
ConfirmPasswordCompareErrorMessage="The passwords you entered are not the same"
EmailRequiredErrorMessage="You must supply an Email"
UserNameRequiredErrorMessage="You must supply a Username"
PasswordRequiredErrorMessage="You must supply a Password">
I'm not using templates just the standard CreateUserWizardStep and CompleteWizardStep as below
But when the create user button is clicked none of the error messages above are displayed just an asterisk(*). I know I could probably use templates to do
this but I'm just wondering why these properties don't seem do anything in the above example
Bookmarks