0

データベースへの接続を確立できませんでした。SQL Server データベースをまだ作成していない場合は、Web サイト管理ツールを終了し、aspnet_regsql コマンド ライン ユーティリティを使用してデータベースを作成および構成します。その後、このツールに戻ってプロバイダーを設定してください。 " 既にデータベースを作成して構成しましたが、それでも問題は解決しません。ここでは、web.config コードを共有しています

<configuration>
  <connectionStrings>
    <clear/>
    <add name="LocalSqlServer" connectionString="Data Source=(localdb)\MSSQLLocalDB;Initial catalog=login;Integrated Security=True"
      providerName="System.Data.SqlClient" /> 
  </connectionStrings>
  <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None"/>
  </appSettings>
    <system.web>
      <roleManager enabled="true" />
      <authentication mode="Forms"></authentication>
       <membership>
            <providers>
              <clear/>
                <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression=""/>
            </providers>
        </membership>
      <compilation debug="true" targetFramework="4.5.2" />
      <httpRuntime targetFramework="4.5.2" />
    </system.web>

</configuration>

どこかで接続文字列が間違っていると感じます。ここでは、machine.config接続文字列形式のコードも共有しています

<connectionStrings>
        <add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
    </connectionStrings>
4

0 に答える 0