Login.LabelStyle Property

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)

'Declaration
Public ReadOnly Property LabelStyle As TableItemStyle
'Usage
Dim instance As Login
Dim value As TableItemStyle

value = instance.LabelStyle

/** @property */
public TableItemStyle get_LabelStyle ()

public function get LabelStyle () : TableItemStyle

Not applicable.

Property Value

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.

<%@ 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 xmlns="http://www.w3.org/1999/xhtml" >
    <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 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: