Login.LoginButtonStyle Property

Definition

Gets a reference to the Style object that allows you to set the appearance of the login button in the Login control.

public:
 property System::Web::UI::WebControls::Style ^ LoginButtonStyle { System::Web::UI::WebControls::Style ^ get(); };
[System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)]
public System.Web.UI.WebControls.Style LoginButtonStyle { get; }
[<System.Web.UI.PersistenceMode(System.Web.UI.PersistenceMode.InnerProperty)>]
member this.LoginButtonStyle : System.Web.UI.WebControls.Style
Public ReadOnly Property LoginButtonStyle As Style

Property Value

A reference to a Style that represents the style of the login button.

Attributes

Examples

The following code example uses the LoginButtonStyle property to define the appearance of the Login control login button.

<%@ Page Language="C#" AutoEventWireup="true" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
  
  protected void Page_Load(object sender, EventArgs e)
  {
    Login1.LoginButtonStyle.BorderWidth = Unit.Parse("2px");
  }
</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">

        <LoginButtonStyle ForeColor="Red" 
                          BackColor="Silver" />

      </asp:Login>

    </form>

  </body>

</html>
<%@ Page Language="VB" AutoEventWireUp="true"%>

<!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.LoginButtonStyle.BorderWidth = Unit.Parse("2px")
    
  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">

        <LoginButtonStyle ForeColor="Red" 
                          BackColor="Silver" />
      </asp:Login>

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

Remarks

Use the LoginButtonStyle property to control the appearance of the login button 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, LoginButtonStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, LoginButtonStyle.ForeColor).

Common settings include custom background color, text color, and font properties. The LoginButtonStyle property defines the appearance of the login button.

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

The following Login style properties are overridden by LoginButtonStyle settings:

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

Applies to

See also