Login.HelpPageUrl 属性
定义
获取或设置登录帮助页的 URL。Gets or sets the URL of the login 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
属性值
登录帮助页的 URL。The URL of the login Help page. 默认为 Empty。The default is Empty.
示例
下面的代码示例使用 HelpPageUrl 属性指定站点的登录帮助页的 URL。The following code example uses the HelpPageUrl property to specify the URL of the site's login Help page.
<%@ 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"
HelpPageText="Help logging in..."
HelpPageUrl="loginHelp.aspx">
</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"
HelpPageText="Help logging in..."
HelpPageUrl="loginHelp.aspx">
</asp:Login>
</form>
</body>
</html>
注解
HelpPageUrl属性包含网站的登录帮助页的 URL。The HelpPageUrl property contains the URL of the login Help page for the Web site. HelpPageText属性包含用于链接的文本。The HelpPageText property contains the text used for the link.
如果 HelpPageUrl 为空,则将 HelpPageText 向用户显示该属性中的文本,但不会将其格式化为链接。If HelpPageUrl is empty, text in the HelpPageText property is displayed to the user, but is not formatted as a link.
如果该 HelpPageText 属性为空,则用户无法使用登录帮助页面的链接。If the HelpPageText property is empty, the link to the login Help page is not available to the user.