簡體   English   中英

未在我的測試機中構建ASP.NET項目

[英]ASP.NET project not building in my Testing machine

我有一個正在運行的項目,需要修改。 我試圖將整個項目加載到Visual Studio 15 CE中進行修改。 我在解決方案資源管理器中獲得了整個文件列表,然后在SQL Manager中獲得了數據庫。 當我單擊執行時,它會顯示一個錯誤列表! 這是圖片。 在此處輸入圖片說明

然后在瀏覽器中,我收到以下消息:

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/identity@impersonate 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/validation@validateIntegratedModeConfiguration 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

這是應用程序池設置問題。

嘗試進入IIS並更改應用程序的應用程序池以使用經典模式而不是集成模式。

或者,您可以將其添加到Web.Config中:

 <system.webServer>
     <validation validateIntegratedModeConfiguration="false" />
 </system.webServer>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM