0
我DNN的版本是00年2月7日,當我想改變/復位包含符號「%」我得到這個錯誤密碼:DNN修改密碼/重置不接受「%」符號
Failed to update password - either the username/token combination is invalid (or the token has expired), or the password is not valid. Passwords must be at least 7 characters in length and contain at least 0 non-alphanumeric characters.
我試圖通過使用正則表達式來解決這個(沒有工作):
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" **passwordStrengthRegularExpression="^.*(?=.{6,}).*$"** connectionStringName="SiteSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="0" requiresUniqueEmail="false" passwordFormat="Hashed" applicationName="DotNetNuke" description="Stores and retrieves membership data from the local Microsoft SQL Server database" />
有誰知道這是一個錯誤,或者如果我的解決方案是錯誤的?