2011-07-13 54 views
1

我改变了我的密码格式在web.config中的散列加密的,并增加了机器的关键,但之后,我得到这个错误:asp.net更改密码的格式问题

Format of the initialization string does not conform to specification starting at index 0 

我试图改变回哈希但我仍然有这个错误。

这里是会员代码:

 <membership> 
     <providers> 
      <remove name="AspNetSqlMembershipProvider"/> 
      <add name="AspNetSqlMembershipProvider" 
       type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
       connectionString="LocalSqlServer" 
       enablePasswordRetrieval="false" 
       enablePasswordReset="true" 
       requiresQuestionAndAnswer="false" 
       applicationName="/" 
       requiresUniqueEmail="true" 
       minRequiredPasswordLength="6" 
       minRequiredNonalphanumericCharacters="0" 
       passwordFormat="Encrypted" 
       maxInvalidPasswordAttempts="5" 
       passwordAttemptWindow="10" 
       passwordStrengthRegularExpression=""/> 
     </providers>  
    </membership> 

和连接字符串:

<connectionStrings> 
    <remove name="LocalSqlServer"/> 
    <add name="LocalSqlServer" connectionString="Data Source=AHMED-PC\SQLEXPRESS;Initial Catalog=test;Persist Security Info=True;User ID=sa;Password=123456" providerName="System.Data.SqlClient"/> 
</connectionStrings> 

注:连接字符串工作正常之前,我改了密码格式。

使用asp.net 4.0

是什么问题,谢谢。

回答

1

解决它通过从连接字符串附接ASPNETDB.MDF文件和除去初始目录:

 <connectionStrings> 
    <remove name="localsqlserver"/> 
     <add name="localsqlserver" connectionString="Data Source=AHMED-PC\SQLEXPRESS;AttachDBFilename=|DataDirectory|aspnetdb.mdf;Persist Security Info=True;User ID=sa;Password=123456" providerName="System.Data.SqlClient"/> 
</connectionStrings>