PasswordRecovery.SuccessTextStyle Property

Definition

Gets a reference to a collection of style properties that define the appearance of text displayed in the Success view of the PasswordRecovery control.

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

Property Value

A reference to a TableItemStyle that contains properties that define the appearance of text displayed in the Success view.

Attributes

Examples

The following code example uses the SuccessTextStyle property to change the appearance of the SuccessText property.

<%@ 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>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
    <asp:passwordrecovery id="PasswordRecovery1" runat="server" 
        successtext="Your password has been sent to the email address in our files.">
        <successtextstyle font-names="Arial" forecolor="Green"></successtextstyle>
    </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">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
    <asp:passwordrecovery id="PasswordRecovery1" runat="server" 
        successtext="Your password has been sent to the email address in our files.">
        <successtextstyle font-names="Arial" forecolor="Green"></successtextstyle>
    </asp:passwordrecovery>

</form>
</body>
</html>

Remarks

The SuccessTextStyle property defines the appearance of text in the Success view of the PasswordRecovery control. This property is read-only; however, you can set the properties of the Style object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the Style class (for example, SuccessTextStyle-ForeColor). You can also set the properties programmatically in the form Property.Subproperty (for example, SuccessTextStyle.ForeColor).

Common settings include custom background color, text color, and font properties.

The style settings for the SuccessTextStyle property are merged with the style settings for the PasswordRecovery control. Any settings made in the SuccessTextStyle property override the corresponding settings in properties of the PasswordRecovery control.

The following PasswordRecovery properties are overridden by SuccessTextStyle settings:

When you use templates to define the appearance of the Success view of the PasswordRecovery control, the SuccessTextStyle property has no effect.

Applies to

See also