Asp.net 无法将数据库连接到web管理工具2010

Asp.net 无法将数据库连接到web管理工具2010,asp.net,Asp.net,我正在使用WebDeveloper2010,无法将我的数据库连接到web管理工具。 每当我注册新成员时,数据不会保存到web管理工具中 是否因为: <connectionStrings> <add name="xxxConnectionString" connectionString="Data Source=rainbowinthedar\sqlexpress;Initial Catalog=xxx;Integrated Securit

我正在使用WebDeveloper2010,无法将我的数据库连接到web管理工具。 每当我注册新成员时,数据不会保存到web管理工具中

是否因为:

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


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

name="xxxConnectionString"
vs


按理说,我应该将其更改为ConnectionString=“xxxConnectionString”对吗?@user1434463:从我所看到的来看,是的。
name="xxxConnectionString"
connectionStringName="LocalSqlServer"