1

新しいプロジェクトを作成してその上にインストールすると問題なく動作しますが、作業中のプロジェクトでそれを実行すると、次のエラーが発生します。

すべてのdllファイル、packages.xml、web.configを置き換えてみました。Webヘルパーをインストールする前のファイルを使用しましたが、問題はまだ残っています。

エラーを示すこのコード行 (50 行目) はまったく同じで、インストール前は正常に機能していました。

Server Error in '/' Application.

Configuration Error

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 

Parser Error Message: The connection name 'DefaultConnection' was not found in the applications configuration or the connection string is empty.

Source Error: 


Line 48:     <membership defaultProvider="DefaultMembershipProvider">
Line 49:       <providers>
Line 50:         <add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
Line 51:       </providers>
Line 52:     </membership>

Source File: C:\Users\BJARKE\Desktop\OlabsRepositories\iconbench\IconBench\web.config    Line: 50 

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.17626

助言がありますか?

4

1 に答える 1

1

これで問題が解決するかどうかはわかりませんが、同じ問題があり、これらの2行をappsettingsの下のweb.configに追加して修正しました

<add key="enableSimpleMembership" value="false"/>
<add key="autoFormsAuthentication" value="false"/>

頑張れマテオ

于 2012-08-08T07:52:06.660 に答える