Bagikan melalui


PasswordRecovery.HyperLinkStyle Properti

Definisi

Mendapatkan referensi ke kumpulan properti yang menentukan tampilan hyperlink pada PasswordRecovery kontrol.

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

Nilai Properti

Referensi ke TableItemStyle yang berisi pengaturan yang menentukan tampilan hyperlink.

Atribut

Contoh

Contoh kode berikut menggunakan HyperLinkStyle properti untuk menyoroti tautan halaman Bantuan saat pengguna memasukkan nama pengguna yang tidak ditemukan di penyimpanan data dalam PasswordRecovery kontrol.

<%@ 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 PasswordRecovery1_UserLookupError(object sender, EventArgs e)
    {
        PasswordRecovery1.HelpPageText = "Need help with recovering your password?";
        PasswordRecovery1.HyperLinkStyle.BackColor = System.Drawing.Color.DarkGreen;
        PasswordRecovery1.HyperLinkStyle.ForeColor = System.Drawing.Color.White;
    }
    
</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:passwordrecovery id="PasswordRecovery1" runat="server"
      helppagetext="Help with recovering your password" 
      helppageurl="recoveryHelp.aspx" OnUserLookupError="PasswordRecovery1_UserLookupError">
        <hyperlinkstyle backcolor="#E0E0E0"></hyperlinkstyle>
    </asp:passwordrecovery>

</form>
</body>
</html>
<%@ 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 PasswordRecovery1_UserLookupError(ByVal sender As Object, ByVal e As System.EventArgs)
        PasswordRecovery1.HelpPageText = "Need help with recovering your password?"
        PasswordRecovery1.HyperLinkStyle.BackColor = System.Drawing.Color.DarkGreen
        PasswordRecovery1.HyperLinkStyle.ForeColor = System.Drawing.Color.White
    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:passwordrecovery id="PasswordRecovery1" runat="server"
      helppagetext="Help with recovering your password" 
      helppageurl="recoveryHelp.aspx" OnUserLookupError="PasswordRecovery1_UserLookupError">
        <hyperlinkstyle backcolor="#E0E0E0"></hyperlinkstyle>
    </asp:passwordrecovery>

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

Keterangan

Properti HyperLinkStyle menentukan tampilan HelpPageText properti . Properti ini bersifat baca-saja; namun, Anda dapat mengatur properti objek yang Style dikembalikannya. Properti dapat diatur secara deklaratif dalam formulir Property-Subproperty, di mana Subproperty mewakili properti Style kelas (misalnya, HyperLinkStyle-ForeColor). Anda juga dapat mengatur properti secara terprogram dalam formulir Property.Subproperty (misalnya, HyperLinkStyle.ForeColor).

Pengaturan umum mencakup warna latar belakang kustom, warna teks, dan properti font.

Pengaturan gaya untuk HyperLinkStyle properti digabungkan dengan PasswordRecovery pengaturan gaya kontrol. Pengaturan apa pun yang HyperLinkStyle dibuat di properti akan mengambil alih pengaturan terkait di properti PasswordRecovery kontrol.

Properti berikut ini ditimpa oleh HyperLinkStyle pengaturan:

Saat Anda menggunakan templat untuk menentukan tampilan PasswordRecovery tampilan UserName kontrol atau tampilan Pertanyaan, HyperLinkStyle properti tidak berpengaruh.

Berlaku untuk

Lihat juga