Condividi tramite


CreateUserWizard.InvalidQuestionErrorMessage Proprietà

Definizione

Ottiene o imposta il messaggio visualizzato quando la domanda di recupero della password immessa non è valida.

public:
 virtual property System::String ^ InvalidQuestionErrorMessage { System::String ^ get(); void set(System::String ^ value); };
public virtual string InvalidQuestionErrorMessage { get; set; }
member this.InvalidQuestionErrorMessage : string with get, set
Public Overridable Property InvalidQuestionErrorMessage As String

Valore della proprietà

Messaggio visualizzato quando la domanda di recupero della password non è valida. Il valore predefinito è "Immettere una risposta valida". Il testo predefinito per il controllo viene localizzato in base alle impostazioni locali correnti del server.

Esempio

Nell'esempio di codice seguente viene modificata la InvalidQuestionErrorMessage proprietà per un provider di appartenenze che limita le domande ai caratteri alfanumerici a-z, A-Z e 0-9. Il provider di appartenenze effettivo non viene visualizzato.

<%@ 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>
<%@ 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 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>

Commenti

Il Membership provider di appartenenze di classe specificato nella MembershipProvider proprietà può limitare le domande di recupero delle password che accetterà. La InvalidQuestionErrorMessage proprietà viene visualizzata quando la domanda immessa dall'utente non soddisfa i requisiti per la domanda impostata dal provider di appartenenze. I requisiti effettivi per la domanda sono determinati dal provider di appartenenze e potrebbero essere diversi per i diversi provider.

Il valore di questa proprietà, se impostato, può essere salvato automaticamente in un file di risorse usando uno strumento di progettazione. Per altre informazioni, vedere LocalizableAttributeGlobalizzazione e localizzazione.

Si applica a

Vedi anche