PasswordRecovery.AnswerLabelText 属性

定义

获取或设置密码确认答案文本框的标签文本。

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

属性值

密码确认答案文本框的标签。 默认值为“答案:”

示例

下面的代码示例将 AnswerLabelText 属性设置为字符串“Your answer:”。

<%@ Page Language="C#" %>
<!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:PasswordRecovery id="PasswordRecovery1" runat="server" 
      AnswerLabelText="Your answer:" 
      QuestionLabelText="Answer this question:" 
      UserNameLabelText="Your user name:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </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">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>ASP.NET Example</title>
</head>
<body>
  <form id="form1" runat="server">
    <asp:PasswordRecovery id="PasswordRecovery1" runat="server" 
      UserNameLabelText="Your user name:" 
      QuestionLabelText="Answer this question:" 
      AnswerLabelText="Your answer:">
      <LabelStyle 
        font-bold="True" 
        forecolor="White"
        backcolor="Navy">
      </LabelStyle>
    </asp:PasswordRecovery>
  </form>
</body>
</html>

注解

属性 AnswerLabelText 包含密码恢复确认答案文本框的标签文本。

属性中的 LabelStyle 样式设置定义 属性中指定的 AnswerLabelText 文本的外观。

如果在 属性中 QuestionTemplate 分配模板,则 属性 AnswerLabelText 无效。

属性的默认文本根据服务器的区域设置进行本地化。

设置此属性的值后,可以使用设计器工具自动保存到资源文件。 有关详细信息,请参阅 LocalizableAttribute全球化和本地化

适用于

另请参阅