我使用的是web developer 2010,无法将我的数据库连接到Web管理工具。 每当我注册新成员时,数据都不会保存到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>
答案 0 :(得分:0)
您的连接字符串名称不匹配。我想它正被保存到不同的数据库中。
name="xxxConnectionString"
VS
connectionStringName="LocalSqlServer"