2016-04-07 21 views
0

私は実行するプロジェクトを修正する必要があります。私は変更するために、Visual Studio 15 CEにプロジェクト全体をロードしようとしています。私は、ソリューションエクスプローラでファイルの全リストを取得してから、SQLマネージャでデータベースを取得しました。実行をクリックすると、エラーリストが表示されます。ここにイメージがあります。 enter image description hereASP.NETプロジェクトがテストマシンに組み込まれていません

は、ブラウザでは、私はこのメッセージが表示されます。

HTTP Error 500.24 - Internal Server Error 
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode. 
Most likely causes: 

system.web/[email protected] is set to true. 

Things you can try: 

If the application supports it, disable client impersonation. 
If you are certain that it is OK to ignore this error, it can be disabled by setting system.webServer/[email protected] to false. 

Detailed Error Information: 
Module  ConfigurationValidationModule 
Notification  BeginRequest 
Handler StaticFile 
Error Code  0x80070032 
Requested URL  http://localhost:55014 /fanKc9TuE6zuHQVMTPwHWVIHJCM.html 
Physical Path  H:\Quoting system files\MGF_LIVE_BACKUP\fanKc9TuE6zuHQVMTPwHWVIHJCM.html 
Logon Method  Not yet determined 
Logon User  Not yet determined 
Request Tracing Directory  D:\Old folders\Documents\IISExpress \TraceLogFiles\MGF_LIVE_BACKUP 
+0

あなたが添付しました画像に関して、あなたは最近、プロジェクトにフレームワークを格下げしていましたか? – derloopkat

+0

ClientIDModeは、Framework 4以降のSystem.Web.UI名前空間に属しますが、Framework 3.5には存在しません。このエラーが発生します。詳細はこちらhttp://forums.asp.net/t/1785632.aspx?The+type++namespace+name+ClientIDMode+does+not+exist+in+the+namespace+System+Web+UI+are + + + +アセンブリ+リファレンス+とhttp://stackoverflow.com/questions/20687011/cannot-use-clientidmode-states-missing-assembly-reference – derloopkat

+0

元のプロジェクトの.Netフレームワークバージョンとは何ですか?メモ帳で.csprojファイルを開き、 "ToolsVersion"値をお知らせください。 – Sam

答えて

1

これは問題の設定、アプリケーションプール..です

IISに入るとクラシックを使用するようにアプリケーションのためのアプリケーションプールを変更してみてくださいモードを使用します。

また、あなたのWeb.Configにこれを追加することができます。

<system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
</system.webServer> 
関連する問題