Udostępnij za pośrednictwem


PasswordRecovery.FailureTextStyle Właściwość

Definicja

Pobiera odwołanie do kolekcji właściwości, które definiują wygląd tekstu błędu w kontrolce PasswordRecovery .

public:
 property System::Web::UI::WebControls::TableItemStyle ^ FailureTextStyle { System::Web::UI::WebControls::TableItemStyle ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.TableItemStyle FailureTextStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.FailureTextStyle : System.Web.UI.WebControls.TableItemStyle
Public ReadOnly Property FailureTextStyle As TableItemStyle

Wartość właściwości

Odwołanie do obiektu TableItemStyle zawierającego właściwości definiujące wygląd tekstu błędu.

Atrybuty

Przykłady

Poniższy przykład kodu używa właściwości , FailureTextStyle aby ustawić właściwość style dla komunikatów o błędach w kontrolce PasswordRecovery .

<%@ 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>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:PasswordRecovery id="PasswordRecovery1" runat="server" 
            GeneralFailureText="You password cannot be retrieved at this time. Please try again later." 
            QuestionFailureText="Your answer does not match the stored answer. Please try again." 
            UserNameFailureText="We couldn't find that user name. Please try again.">
            <FailureTextStyle backcolor="Red" forecolor="White"></FailureTextStyle>
        </asp:PasswordRecovery>
    </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">

    ' Insert page code here
    '

</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:PasswordRecovery id="PasswordRecovery1" runat="server" 
            GeneralFailureText="You password cannot be retrieved at this time. Please try again later." 
            QuestionFailureText="Your answer does not match the stored answer. Please try again." 
            UserNameFailureText="We couldn't find that user name. Please try again.">
            <FailureTextStyle backcolor="Red" forecolor="White"></FailureTextStyle>
        </asp:PasswordRecovery>
        <!-- Insert content here -->
    </form>
</body>
</html>

Uwagi

Właściwość FailureTextStyle definiuje wygląd komunikatów o błędach w kontrolce PasswordRecovery . Ta właściwość jest tylko do odczytu; można jednak ustawić właściwości zwracanego Style obiektu. Te właściwości można ustawić deklaratywnie w postaci Property-Subproperty, gdzie Subproperty reprezentuje właściwość Style klasy (na przykład FailureTextStyle-ForeColor). Właściwość można ustawić programowo w formularzu Property.Subproperty (na przykład FailureTextStyle.ForeColor).

Typowe ustawienia obejmują niestandardowy kolor tła, kolor tekstu i właściwości czcionki. Właściwość FailureTextStyle definiuje wygląd następujących właściwości:

Ustawienia stylu właściwości FailureTextStyle są scalane z ustawieniami stylu kontrolki PasswordRecovery . Wszystkie ustawienia wprowadzone we FailureTextStyle właściwości zastępują odpowiednie ustawienia we właściwościach kontrolki PasswordRecovery .

Następujące PasswordRecovery właściwości stylu są zastępowane przez FailureTextStyle ustawienia:

Gdy używasz szablonów do definiowania wyglądu kontrolki PasswordRecovery , FailureTextStyle właściwość nie ma wpływu.

Dotyczy

Zobacz też