我使用 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>