Login.HyperLinkStyle Property

Definition

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

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

Property Value

A reference to the TableItemStyle that contains properties that define the appearance of hyperlinks.

Attributes

Examples

The following code example sets hyperlinks in the Login control to green italic text by setting properties of the TableItemStyle object referenced by the HyperLinkStyle 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Login id="Login1" runat="server" 
            CreateUserText="New user registration..." 
            CreateUserUrl="register.aspx" 
            PasswordRecoveryText="Forgot your password?" 
            PasswordRecoveryUrl="passwordRecovery.aspx"
            HelpPageText="Help logging in..." 
            HelpPageUrl="loginHelp.aspx" >
            <HyperLinkStyle font-italic="True" forecolor="Green">
            </HyperLinkStyle>
        </asp:Login>
    </form>
</body>
</html>
<%@ 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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:Login id="Login1" runat="server" 
            CreateUserText="New user registration..." 
            CreateUserUrl="register.aspx" 
            PasswordRecoveryText="Forgot your password?" 
            PasswordRecoveryUrl="passwordRecovery.aspx"
            HelpPageText="Help logging in..." 
            HelpPageUrl="loginHelp.aspx" >
            <HyperLinkStyle font-italic="True" forecolor="Green">
            </HyperLinkStyle>
        </asp:Login>
    </form>
</body>
</html>

Remarks

The HyperLinkStyle property defines the appearance of hyperlinks 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, HyperLinkStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, HyperLinkStyle.ForeColor).

Common settings include custom background color, text color, and font properties. The HyperLinkStyle property defines the appearance of the following properties:

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

The following Login style properties are overridden by HyperLinkStyle settings:

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

Applies to

See also