HTTP 错误 403.14 - 禁止调试 ASP.NET Web 应用程序

HTTP Error 403.14 - Forbidden with Debug of ASP.NET Web Application

我正在尝试启动 ASP.NET Web 应用程序

但是我在调​​试时遇到了这个错误:

HTTP Error 403.14 - Forbidden The Web server is configured to not list
the contents of this directory.

Module
   DirectoryListingModule
Notification
   ExecuteRequestHandler
Handler
   StaticFile
Error Code
   0x00000000

不确定这是否正是我必须做的,但如图所示,我必须在 Windows 10 上遵循此 instruction but when I'm trying to open IIS Manager,它说 Windows 找不到 'inetmgr'. 或 'inetmgr.exe'

所以不确定我必须做什么才能解决这个错误。

因为您似乎没有安装完整的 IIS,请尝试将其添加到您要浏览的目录中的 web.config:

<system.webServer>
    <directoryBrowse enabled="true"/>
</system.webServer>

...至少这样您就可以解决这个问题。如果您这样做是为了调试,那很好,但是您必须认真考虑这是否真的是您想要在生产服务器上允许的。