Bagikan melalui


PasswordRecovery.HelpPageUrl Properti

Definisi

Mendapatkan atau mengatur URL halaman Bantuan pemulihan kata sandi.

public:
 virtual property System::String ^ HelpPageUrl { System::String ^ get(); void set(System::String ^ value); };
public virtual string HelpPageUrl { get; set; }
member this.HelpPageUrl : string with get, set
Public Overridable Property HelpPageUrl As String

Nilai Properti

URL halaman Bantuan pemulihan kata sandi. Default adalah Empty.

Contoh

Contoh kode berikut menggunakan HelpPageUrl properti untuk menautkan ke halaman Bantuan. Jika pengguna tidak memasukkan nama pengguna mereka dengan benar, UserLookupError peristiwa akan dinaikkan dan tautan disorot.

<%@ 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 HelpPageUrl berisi URL halaman Bantuan pemulihan kata sandi. PasswordRecovery Kontrol menampilkan tautan ke halaman Bantuan pemulihan kata sandi dalam tampilan Nama Pengguna dan tampilan Pertanyaan tetapi tidak dalam tampilan Berhasil.

HelpPageText Jika properti diatur ke Empty, tidak ada tautan yang ditampilkan.

Tampilan tautan halaman Bantuan ditentukan oleh HyperLinkStyle properti .

Saat Anda menggunakan templat untuk menentukan tampilan PasswordRecovery kontrol, HelpPageText properti dan HelpPageUrl tidak berpengaruh.

Berlaku untuk

Lihat juga