ChangePassword.NewPasswordRegularExpressionErrorMessage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定錯誤訊息,其顯示於當輸入的密碼未通過在 NewPasswordRegularExpression 屬性中定義之規則運算式準則時。
public:
virtual property System::String ^ NewPasswordRegularExpressionErrorMessage { System::String ^ get(); void set(System::String ^ value); };
public virtual string NewPasswordRegularExpressionErrorMessage { get; set; }
member this.NewPasswordRegularExpressionErrorMessage : string with get, set
Public Overridable Property NewPasswordRegularExpressionErrorMessage As String
屬性值
當輸入的密碼不能通過在 NewPasswordRegularExpression 定義的規則運算式準則時,所顯示的錯誤訊息。 預設為 Empty。
範例
下列程式代碼範例示範如何設定 NewPasswordRegularExpression 屬性來定義正則表示式,以檢查密碼以確保其符合下列準則:
大於六個字元。
至少包含一個數位。
至少包含一個特殊 (非英數位元) 字元。
屬性中包含的 PasswordHintText 密碼需求會顯示給使用者。
如果使用者輸入的密碼不符合準則,則會向用戶顯示 屬性中包含的 NewPasswordRegularExpressionErrorMessage 文字。 如果未輸入新的密碼,則會向用戶顯示 屬性中包含的 NewPasswordRequiredErrorMessage 文字。
注意
新的密碼也必須符合、 MinRequiredNonAlphanumericCharacters和 PasswordStrengthRegularExpression 屬性中MinRequiredPasswordLength成員資格提供者所設定的最低需求。 如果密碼不符合這些需求,就會 ChangePasswordError 引發 事件。
<%@ 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">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Change Password with Validation</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:changepassword id="ChangePassword1" runat="server"
PasswordHintText =
"Please enter a password at least 7 characters long,
containing a number and one special character."
NewPasswordRegularExpression =
'@\"(?=.{7,})(?=(.*\d){1,})(?=(.*\W){1,})'
NewPasswordRegularExpressionErrorMessage =
"Error: Your password must be at least 7 characters long,
and contain at least one number and one special character." >
</asp:changepassword>
</div>
</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">
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Change Password with Validation</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:changepassword id="ChangePassword1" runat="server"
PasswordHintText = "Please enter a password at least 7 characters long, containing a number and one special character."
NewPasswordRegularExpression = '@\"(?=.{7,})(?=(.*\d){1,})(?=(.*\W){1,})'
NewPasswordRegularExpressionErrorMessage = "Your password must be at least 7 characters long, and contain at least one number and one special character.">
</asp:changepassword>
</div>
</form>
</body>
</html>
備註
NewPasswordRegularExpressionErrorMessage使用屬性通知使用者輸入的密碼不會傳遞 屬性中NewPasswordRegularExpression定義的正規表示式。
NewPasswordRegularExpressionErrorMessage與可在數據存放區層級設定的密碼強制執行無關。 新的密碼必須符合、 MinRequiredNonAlphanumericCharacters和 PasswordStrengthRegularExpression 屬性中MinRequiredPasswordLength成員資格提供者所設定的最低需求。 如果密碼不符合這些需求,就會 ChangePasswordError 引發 事件。