PasswordRecovery.HelpPageText 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 text of the link to the password recovery Help page.
public:
virtual property System::String ^ HelpPageText { System::String ^ get(); void set(System::String ^ value); };
public virtual string HelpPageText { get; set; }
member this.HelpPageText : string with get, set
Public Overridable Property HelpPageText As String
Property Value
The text of the link to the password recovery Help page. The default is Empty.
Examples
The following code example uses the HelpPageText property to link to a Help page. If the user does not enter their user name properly, the UserLookupError event handler is used to highlight the link.
<%@ 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 HelpPageText property contains the link text for the password recovery Help page. If a URL is specified in the HelpPageText property, the PasswordRecovery control displays a link to information about password recovery in the UserName view and the Question view, but not in the Success view.
If the HelpPageUrl 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.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see LocalizableAttribute and Globalization and Localization.