CreateUserWizard.InvalidAnswerErrorMessage Property
Gets or sets the message displayed when the password retrieval answer is not valid.
Assembly: System.Web (in System.Web.dll)
'Declaration Public Overridable Property InvalidAnswerErrorMessage As String 'Usage Dim instance As CreateUserWizard Dim value As String value = instance.InvalidAnswerErrorMessage instance.InvalidAnswerErrorMessage = value
<asp:CreateUserWizard InvalidAnswerErrorMessage="String" />
Property Value
Type: System.StringThe message displayed when the password retrieval answer is not valid. The default is "Please enter a different security 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 support a question and answer for retrieving or resetting the user's password. The InvalidAnswerErrorMessage property is displayed when the answer entered by the user does not meet the requirements for the answer set by the membership provider. The actual requirements for the answer 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 InvalidAnswerErrorMessage property for a membership provider that requires the answer to have a minimum length. The actual membership provider is not shown.
<%@ page language="VB"%> <!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 InvalidAnswerErrorMessage sample</title> </head> <body> <form id="form1" runat="server"> <div> <asp:createuserwizard id="Createuserwizard1" runat="server" InvalidAnswerErrorMessage="The security question answer must be at least 8 characters long."> <WizardSteps> <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server"> </asp:CreateUserWizardStep> <asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server"> </asp:CompleteWizardStep> </WizardSteps> </asp:createuserwizard> </div> </form> </body> </html>
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.