Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Login Class
Login Properties
 LabelStyle Property
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Login..::.LabelStyle Property

Updated: November 2007

Gets a reference to a TableItemStyle object that defines the settings for Login control labels.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

Visual Basic (Declaration)
<PersistenceModeAttribute(PersistenceMode.InnerProperty)> _
Public ReadOnly Property LabelStyle As TableItemStyle
Visual Basic (Usage)
Dim instance As Login
Dim value As TableItemStyle

value = instance.LabelStyle
C#
[PersistenceModeAttribute(PersistenceMode.InnerProperty)]
public TableItemStyle LabelStyle { get; }
Visual C++
[PersistenceModeAttribute(PersistenceMode::InnerProperty)]
public:
property TableItemStyle^ LabelStyle {
    TableItemStyle^ get ();
}
J#
/** @property */
/** @attribute PersistenceModeAttribute(PersistenceMode.InnerProperty) */
public TableItemStyle get_LabelStyle()
JScript
public function get LabelStyle () : TableItemStyle

Property Value

Type: System.Web.UI.WebControls..::.TableItemStyle

A reference to the TableItemStyle that defines the style settings of the Login control labels.

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

Common settings include custom background color, text color, and font properties. The LabelStyle property defines the appearance of the following properties:

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

The following Login style properties are overridden by LabelStyle settings:

When you use templates to define the appearance of the Login control, the LabelStyle property has no effect.

The following code example sets the text box labels to blue italic text by setting properties of the TableItemStyle object referenced by the LabelStyle property.

Visual Basic
<%@ Page Language="VB" AutoEventWireup="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
        Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
            Login1.LabelStyle.ForeColor = System.Drawing.Color.Blue
        End Sub
</script>

<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="Form1" runat="server">
            <asp:Login id="Login1" runat="server">
                <LabelStyle Font-Italic="True"></LabelStyle>
            </asp:Login>

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

C#
<%@ Page Language="C#" AutoEventWireup="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">
        void Page_Load(Object sender, EventArgs e) 
        {
            Login1.LabelStyle.ForeColor = System.Drawing.Color.Blue;
        }
</script>

<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="Form1" runat="server">
            <asp:Login id="Login1" runat="server">
                <LabelStyle Font-Italic="True"></LabelStyle>
            </asp:Login>

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

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, 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.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker