密码长度最小值:7。需要非字母数字字符:1

时间:2015-12-10 10:20:59

标签: asp.net

我正在使用ASP.Net Membership,在创建用户向导时,我收到以下错误。

最小密码长度:7。需要非字母数字字符:1

我在帐户文件夹

中的 web.config 文件中添加了以下代码
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="Developer"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="UsingMembership"
requiresUniqueEmail="false"
minRequiredPasswordLength="6"
minRequiredNonalphanumericCharacters="0"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
passwordAttemptWindow="10"
passwordStrengthRegularExpression="" />

导致此错误的原因是什么?

2 个答案:

答案 0 :(得分:1)

好吧,您可以尝试将minRequiredPasswordLength更改为7,并指定需要至少一个非alpha字符的正则表达式...

使用以下[^\w]

这应该这样做。

答案 1 :(得分:0)

对网站根目录中的web.config中的设置进行更改,这是对它们的读取位置。