2016-04-07 17 views
0

Değiştirmem gereken bir proje var. Tüm projeyi değiştirmek için Visual Studio 15 CE'ye yüklemeye çalışıyorum. Çözüm gezginimdeki tüm dosya listesini ve SQL Manager'daki veritabanını da aldım. Çalıştırdığımda bir hata listesi veriyor! İşte görüntü. enter image description hereASP.NET projesi Test makinemde yapılamadı

Sonra Tarayıcıda, bu mesaj çıktı:

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

ekli ettik görüntüye konuda, yakın zamanda projede çerçeveyi döndürüldüğünü vardı? – derloopkat

+0

ClientIDMode, Framework 4 ve sonraki sürümlerde System.Web.UI ad alanına aittir, ancak Framework 3.5'de eksiktir ve bu hatayı artırır. Daha fazla bilgi burada http://forums.asp.net/t/1785632.aspx?The+type+or+namespace+name+ClientIDMode+does+not+exist+in+the+namespace+System+Web+UI+are + you + missing + an + assembly + reference + ve http://stackoverflow.com/questions/20687011/cannot-use-clientidmode-states-missing-assembly-reference – derloopkat

+0

Orijinal projenin .Net framework sürümü nedir? .csproj dosyasını bir not defterinde açın ve "ToolsVersion" değerini bize bildirin. – Sam

cevap

1

Bu uygulama Havuz ayarı konudur ..

IIS girecek ve klasik kullanmak uygulamanız için uygulama havuzu değiştirmeyi deneyin modlanmış mod yerine mod.

Alternatif olarak, web Web.config bu ekleyebilirsiniz:

<system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
</system.webServer> 
İlgili konular