Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Login Class
Login Properties
 TextBoxStyle 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..::.TextBoxStyle Property

Updated: November 2007

Gets a reference to a collection of properties that define the appearance of text boxes in the Login control.

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

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

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

Property Value

Type: System.Web.UI.WebControls..::.Style

A reference to the Style that contains properties that define the appearance of text boxes.

The TextBoxStyle property defines the appearance of the User name and Password TextBox controls in the Login 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, TextBoxStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, TextBoxStyle.ForeColor).

Common settings include custom background color, text color, and font properties. The TextBoxStyle property defines the appearance of the user name and password text boxes.

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

The following Login style properties are overridden by TextBoxStyle settings:

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

The following code example sets the background and text colors of the User name and Password TextBox controls by setting properties on the Style object referenced by the TextBoxStyle property.

Security Note:

This example contains a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview.

Visual Basic
<%@ 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">
Sub OnLoginError(ByVal sender As Object, ByVal e As EventArgs)
    Login1.TextBoxStyle.BackColor = System.Drawing.Color.Red
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"
                OnLoginError="OnLoginError">
                <TextBoxStyle 
                    BorderStyle="Inset" 
                    ForeColor="#FFFFC0" 
                    BackColor="Gray">
                </TextBoxStyle>
            </asp:Login>

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

C#
<%@ 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">
void OnLoginError(object server, EventArgs e) 
{
    Login1.TextBoxStyle.BackColor = System.Drawing.Color.Red;
}
</script>

<html  >
    <head runat="server">
    <title>ASP.NET Example</title>
</head>
<body>
        <form id="form1" runat="server">
            <asp:Login id="Login1" runat="server"
                OnLoginError="OnLoginError">
                <TextBoxStyle 
                    BorderStyle="Inset" 
                    ForeColor="#FFFFC0" 
                    BackColor="Gray">
                </TextBoxStyle>
            </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