PasswordRecovery.HelpPageUrl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the URL of the password recovery Help page.
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
Property Value
The URL of the password recovery Help page. The default is Empty.
Examples
The following code example uses the HelpPageUrl property to link to a Help page. If the user does not enter their user name properly, the UserLookupError event is raised and the link is highlighted.
<%@ 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>
Remarks
The HelpPageUrl property contains the URL of the password recovery Help page. The PasswordRecovery control displays a link to the password recovery Help page in the UserName view and the Question view but not in the Success view.
If the HelpPageText property is set to Empty, no link is displayed.
The appearance of the Help page link is defined by the HyperLinkStyle property.
When you use templates to define the appearance of the PasswordRecovery control, the HelpPageText and HelpPageUrl properties have no effect.