如何解决IIS中的调试问题

时间:2018-10-29 12:43:37

标签: c# asp.net visual-studio iis

您好,我在使用iis进行VS调试时遇到问题:

enter image description here

所以我应该一直做的是:

enter image description here

这是IIS中的应用程序池:

enter image description here

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

两个选项

  1. 在Visual Studio中,通过Debug-> Attach To Process附加一个调试构建的项目,然后过滤/选择w3wp.exe。如果您有多个正在运行的站点/服务,则最好将不同的站点/服务放在不同的应用程序池中。这样,您可以确定要附加的对象。我附加的服务下方是App Pool 8。

enter image description here

  1. F5调试站点/服务。如果要处理宁静的Web服务,则可能需要更改某些web.config值,例如allowunlisted。另外,以debug为例,在编译时设置<compilation targetFramework="4.5.2" debug="true"/>也很有帮助。