Login.HelpPageText 属性
定义
获取或设置登录帮助页链接的文本。Gets or sets the text of a link to the login 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
属性值
登录帮助页链接的文本。The text of the link to the login Help page. 默认为 Empty。The default is Empty.
示例
下面的代码示例使用 HelpPageText 属性指定指向站点的登录帮助页的链接的文本。The following code example uses the HelpPageText property to specify the text of a link to 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>
注解
HelpPageText属性包含站点的登录帮助页的链接文本。The HelpPageText property contains the link text to the login Help page for the site. 登录帮助页的 URL 在属性中指定 HelpPageUrl 。The URL of the login Help page is specified in the HelpPageUrl property.
如果 HelpPageUrl 为空,则会在 HelpPageText 页面上向用户显示该属性中的文本,但不会将其格式设置为链接。If HelpPageUrl is empty, the text in the HelpPageText property is displayed to the user on the page, 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.
设置此属性后,可以使用设计器工具自动将此属性的值保存到资源文件中。The value of this property, when set, can be saved automatically to a resource file by using a designer tool. 有关详细信息,请参阅 LocalizableAttribute 和 全球化和本地化。For more information, see LocalizableAttribute and Globalization and Localization.