PasswordRecovery.UserNameLabelText 屬性

定義

取得或設定 [使用者名稱] 文字方塊標籤的文字。

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

屬性值

String

[使用者名稱] 文字方塊的標籤。 預設值為 [使用者名稱:]。

範例

下列程式碼範例會將 UserNameLabelText 屬性設定為 「Your user name:」。

<%@ 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>

備註

屬性 UserNameLabelText 包含文字方塊的 UserName 標籤文字。

屬性中的 LabelStyle 樣式設定會定義屬性的外觀 UserNameLabelText

當您將範本指派給 屬性時 UserNameTemplateUserNameLabelText 屬性不會有任何作用。

屬性的預設文字會根據伺服器的地區設定進行當地語系化。

設定時,這個屬性的值可以使用設計工具自動儲存到資源檔。 如需詳細資訊,請參閱 LocalizableAttribute全球化和當地語系化

適用於

另請參閱