Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法远程调试 ASP.Net 网站(不是 Web 应用程序)。我看到的一个问题是即使在调试中也没有创建 pdb 文件。
我知道远程调试器,并且在 Web 应用程序和 Windows 服务中使用它没有问题,但似乎无法让它在网站上工作。
谢谢
您必须使用 visualstudio 进行调试,然后将这些 .pdb 文件部署到远程 iis bin 文件夹。
还要检查远程 web.config:
<system.web> <compilation debug="true" /> </system.web>