0

我使用 web developer 2010,无法将我的数据库连接到 web 管理工具。每当我注册新会员时,数据都不会保存到网络管理工具中。

是不是因为:

<connectionStrings>
        <add name="xxxConnectionString"
            connectionString="Data Source=rainbowinthedar\sqlexpress;Initial Catalog=xxx;Integrated Security=True"
            providerName="System.Data.SqlClient" />
    </connectionStrings>

或者

<membership>
        <providers>
          <remove name="AspNetSqlMembershipProvider"/>
          <add name="AspNetSqlMembershipProvider"
               type="System.Web.Security.SqlMembershipProvider"
               connectionStringName="LocalSqlServer"
               minRequiredPasswordLength="5"
               minRequiredNonalphanumericCharacters="0"
               passwordAttemptWindow="10"
               passwordStrengthRegularExpression=""
               />
        </providers>
      </membership>
4

1 回答 1

0

您的连接字符串名称不匹配。我猜它正在被保存到不同的数据库中。

name="xxxConnectionString"

对比

connectionStringName="LocalSqlServer"
于 2012-06-04T06:23:33.237 回答