PasswordRecovery.LabelStyle Property

Definition

Gets a reference to a collection of style properties that define the appearance of text box labels in the PasswordRecovery control.

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

Property Value

A reference to a TableItemStyle that contains properties that define the appearance of text box labels.

Attributes

Examples

The following code example uses the LabelStyle property to change the appearance of text box labels in the PasswordRecovery control.

<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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" 
      AnswerLabelText="Your answer:" 
      QuestionLabelText="Answer this question:" 
      UserNameLabelText="Your user name:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </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">
<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" 
      UserNameLabelText="Your user name:" 
      QuestionLabelText="Answer this question:" 
      AnswerLabelText="Your answer:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </asp:PasswordRecovery>
  </form>
</body>
</html>

Remarks

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

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

The LabelStyle property defines the appearance of the following properties:

Style settings made to the LabelStyle property are merged with the style settings for the PasswordRecovery control. Any settings made in the LabelStyle property override the corresponding settings in properties of the PasswordRecovery control.

The following PasswordRecovery properties are overridden by LabelStyle settings:

When you use templates to define the appearance of the PasswordRecovery control's UserName view and Question view, the LabelStyle property has no effect.

Applies to

See also