CreateUserWizard.InvalidQuestionErrorMessage Property
Assembly: System.Web (in system.web.dll)
[LocalizableAttribute(true)] public virtual string InvalidQuestionErrorMessage { get; set; }
/** @property */ public String get_InvalidQuestionErrorMessage () /** @property */ public void set_InvalidQuestionErrorMessage (String value)
public function get InvalidQuestionErrorMessage () : String public function set InvalidQuestionErrorMessage (value : String)
Not applicable.
Property Value
The message displayed when the password retrieval question is not valid. The default is "Please enter a valid answer." The default text for the control is localized based on the server's current locale.The Membership class membership provider specified in the MembershipProvider property can restrict the password retrieval questions that it will accept. The InvalidQuestionErrorMessage property is displayed when the question entered by the user does not meet the requirements for the question set by the membership provider. The actual requirements for the question are determined by the membership provider, and might be different for different providers.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.
The following code example changes the InvalidQuestionErrorMessage property for a membership provider that restricts questions to the alphanumeric characters a-z, A-Z, and 0-9. The actual membership provider is not shown.
<%@ page language="C#"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>CreateUserWizard InvalidQuestionErrorMessage sample</title> </head> <body> <form id="form1" runat="server"> <div> <asp:createuserwizard id="Createuserwizard1" runat="server" InvalidQuestionErrorMessage="Your question contains invalid characters. You question must contain only the letters a-z, A-Z and numbers 0-9."> <WizardSteps> <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server"> </asp:CreateUserWizardStep> <asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server"> </asp:CompleteWizardStep> </WizardSteps> </asp:createuserwizard> </div> </form> </body> </html>