IIS错误:无法在WebServer上启动调试程序

时间:2015-06-23 14:15:47

标签: asp.net iis iis-7 iis-7.5 iis-6

这就是我得到的错误,在asp.net中按CTRL + F5后,它继续加载到VS上,几秒后,它显示以下消息,

无法在Web服务器上启动调试。 Web服务器 没有及时回应。这可能是因为另一个调试器 单击“帮助”以获取更多信息

我已经使用以下链接进行调查并尝试根除问题

1)https://msdn.microsoft.com/en-us/library/vstudio/dwesw3ee(v=vs.110).aspx

2)IIS Url Rewrite Module causes "unable to start debugging on the webserver"

你的帮助很合适,

谢谢,

3 个答案:

答案 0 :(得分:3)

以下是您的问题的答案,

运行IIS重置,它将释放附加到它的任何进程。使用CTRL + F5运行应用程序并将其停止,然后在调试模式下启动应用程序。还要确保所有asp.net独立进程都在运行。

始终使用Ctrl + F5而不是F5 ..

希望这有帮助

答案 1 :(得分:0)

打开命令提示符(以管理员身份运行)

写iisreset / restart

然后再试一次:))

答案 2 :(得分:0)

我遇到了同样的问题并通过后续步骤解决了:

1。关闭包括错误项目在内的所有 Visual Studio 窗口

  1. 进入路径sln项目,用文本编辑工具打开 enter image description here enter image description here
  2. 搜索 localhost 变量并将端口更改为端口 :80 enter image description here enter image description here
  3. 保存文件并使用 Visual Studio IDE 打开解决方案,构建并运行项目。 enter image description here