PasswordRecovery.QuestionInstructionText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定要在 [問題] 檢視中顯示的文字,指示使用者回應密碼復原確認問題。
public:
virtual property System::String ^ QuestionInstructionText { System::String ^ get(); void set(System::String ^ value); };
public virtual string QuestionInstructionText { get; set; }
member this.QuestionInstructionText : string with get, set
Public Overridable Property QuestionInstructionText As String
屬性值
要在 [問題] 檢視中顯示的指示文字。 預設值為 [請回答下列問題以接收密碼]。
範例
下列程式代碼範例會 QuestionInstructionText 設定 屬性。
<%@ 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">
// <Snippet2>
void PasswordRecovery1_UserLookupError(object sender, EventArgs e)
{
PasswordRecovery1.UserNameInstructionText = "Enter the correct Web site user name.";
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red;
}
// </Snippet2>
// <Snippet4>
void PasswordRecovery1_AnswerLookupError(object sender, EventArgs e)
{
PasswordRecovery1.QuestionInstructionText = "Enter the correct answer to this question.";
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red;
}
// </Snippet4>
</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"
questioninstructiontext="Enter the answer to the password confirmation question."
usernameinstructiontext="Enter your Web site user name."
OnUserLookupError="PasswordRecovery1_UserLookupError" OnAnswerLookupError="PasswordRecovery1_AnswerLookupError">
<instructiontextstyle
font-size="Smaller"
font-names="Comic Sans MS"
font-italic="True"
forecolor="Blue">
</instructiontextstyle>
</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">
' <Snippet2>
Sub PasswordRecovery1_UserLookupError(ByVal sender As Object, ByVal e As System.EventArgs)
PasswordRecovery1.UserNameInstructionText = "Enter the correct Web site user name."
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red
End Sub
' </Snippet2>
' <Snippet4>
Sub PasswordRecovery1_AnswerLookupError(ByVal sender As Object, ByVal e As System.EventArgs)
PasswordRecovery1.QuestionInstructionText = "Enter the correct answer to this question."
PasswordRecovery1.InstructionTextStyle.ForeColor = System.Drawing.Color.Red
End Sub
' </Snippet4>
</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"
questioninstructiontext="Enter the answer to the password confirmation question."
usernameinstructiontext="Enter your Web site user name."
OnUserLookupError="PasswordRecovery1_UserLookupError" OnAnswerLookupError="PasswordRecovery1_AnswerLookupError">
<instructiontextstyle
font-size="Smaller"
font-names="Comic Sans MS"
font-italic="True"
forecolor="Blue">
</instructiontextstyle>
</asp:passwordrecovery>
</form>
</body>
</html>
備註
屬性 QuestionInstructionText 會顯示在 [問題] 檢視中,以指示使用者回答密碼修復確認問題。
屬性中的 InstructionTextStyle 樣式設定會定義屬性的外觀 QuestionInstructionText 。
當您使用 QuestionTemplate 屬性來定義 [問題] 檢視的外觀時, QuestionInstructionText 屬性不會有任何作用。
屬性的預設文字會根據伺服器的地區設定進行當地語系化。
設定時,這個屬性的值可以使用設計工具自動儲存到資源檔。 如需詳細資訊,請參閱 LocalizableAttribute 和 全球化和當地語系化。