Login.CheckBoxStyle Property
Assembly: System.Web (in system.web.dll)
The CheckBoxStyle property gets a reference to a Style object that you use to change the appearance of the Login control's Remember Me check box.
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, CheckBoxStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, CheckBoxStyle.ForeColor).
Common settings include custom background color, text color, and font properties. The CheckBoxStyle property defines the appearance of the RememberMeText property.
The style settings for the CheckBoxStyle property are merged with the style settings for the Login control. Any settings made in the CheckBoxStyle property override the corresponding settings in properties of the Login control.
The following Login control style properties are overridden by CheckBoxStyle settings:
When you use templates to define the appearance of the Login control, the CheckBoxStyle property has no effect.
The following code example sets the text color of the Remember Me check box to blue and the font style to italic by setting properties of the Style object referenced by the CheckBoxStyle property.
<%@ 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.CheckBoxStyle.ForeColor = System.Drawing.Color.Blue; } </SCRIPT> <HTML> <BODY> <FORM runat="server"> <asp:Login id="Login1" runat="server"> <CheckBoxStyle Font-Italic="True"></CheckBoxStyle> </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.