Login.TextBoxStyle Property
Assembly: System.Web (in system.web.dll)
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.
<%@ 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> <BODY> <FORM runat="server"> <asp:Login id="Login1" runat="server" OnLoginError="OnLoginError"> <TextBoxStyle BorderStyle="Inset" ForeColor="#FFFFC0" BackColor="Gray"> </TextBoxStyle> </asp:Login> </FORM> </BODY> </HTML>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.