问题描述
我有我迁移到.NET 4.6.1一个ASP.Net网站项目。
I have an ASP.Net website project that I am migrating to .Net 4.6.1 .
我已经安装了Visual Studio 2015年的社区,我已经成功地编译和建造两个网站及其组件DLL。
I have installed Visual Studio 2015 Community, and I have successfully compiled and built both the website and its component DLL.
当我尝试使用IIS防爆preSS与F5调试,我得到一个500错误...
When I try to use IIS Express to debug with F5, I get a 500 error...
HTTP错误500.0 - 内部服务器错误
跟踪区域\"Authentication,Security,Filter,StaticFile,CGI,Com$p$pssion,Cache,RequestNotifications,Module,FastCGI,Rewrite,RequestRouting\"无法识别
这是对我说的IIS防爆preSS没有安装一个模块,我需要的。我想这可能是因为ARR和URL重写没有安装,所以我安装了这些,没有任何变化。
That says to me that IIS Express does not have a module installed that I need. I thought it might be that ARR and URL Rewrite were not installed, so I installed these, no change.
我在生产中使用ApplicationPool preWarmCache技术来启动和避免先打'延迟,以及执行其他一次性的启动工作。
My ApplicationPool in production uses PreWarmCache technology to start up and avoid 'first hit' delays, and do other one-time startup work.
帮助越来越IIS防爆preSS运行,该网站将是非常有用的。
Help with getting IIS Express to run the site would be very useful.
推荐答案
如果你有这样一行在你的web.config文件,你可以将其删除并尝试再次运行呢?
If you have a line like this in your web.config file, can you remove it and try to run it again?
<add provider="WWW Server"
areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,FastCGI,Rewrite,RequestRouting"
verbosity="Verbose" />
这篇关于的Visual Studio 2015年IIS防爆$ P $ 500 PSS错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!