メンバーシップまたはプロファイルを使用してユーザーを取得または作成しようとすると、この例外が発生します。これが私の web.config コードです。VS2010 Framework 4.0 を使用しています。
何が問題なのですか?
<connectionStrings>
<add name="classConnectionString" connectionString="Data Source=MINHAS\SQLEXPRESS;Initial Catalog=Test;Integrated Security=True"/>
</connectionStrings>
<profile defaultProvider="MyProvider">
<properties>
<add name="Name" type="System.String"/>
<add name="ID" type="System.String"/>
<add name="Color" type="System.String"/>
</properties>
<providers>
<clear/>
<add name="MyProvider" type="System.Web.Profile.SqlProfileProvider" connnectionStringName="classConnectionString" applicationName="/"/>
</providers>
</profile>
<membership defaultProvider="MyProvider">
<providers>
<add name="MyProvider" connnectionStringName="classConnectionString" type="System.Web.Security.SqlMembershipProvider" applicationName="/" enablePasswordRetrieval="true" enablePasswordReset="true" passwordFormat="Encrypted" requiresQuestionAndAnswer="true"/>
</providers>
</membership>