我在ASP.NET網站上使用ASP.NET Membership屬性進行身份驗證。我希望密碼非常安全。我希望它們是7位數字,包含一個字母,數字和一個特殊字符。ASP.NET密碼強度正則表達式
I found this to be added to the web.config
passwordStrengthRegularExpression=" @\"(?=.{6,})(?=(.*\d){1,})(?=(.*\W){1,})"
然而,當我加入這個我的會員資料,我得到以下錯誤:
Name cannot begin with the '(' character, hexadecimal value 0x28. Line 26, position 445.
所以看起來它沒有看到@符號後轉義字符,並試圖使用該報價結束標籤。任何想法我做錯了什麼?
最後,我該如何修改這個也需要小寫字母和大寫字母?
不相信會的工作,因爲這將對陣'helloth' – Jason 2012-04-05 18:38:52