IIS 站点需要什么才能将错误详细信息发送到浏览器?

发布于 2024-11-15 05:51:57 字数 184 浏览 4 评论 0原文

我在 IIS 7.5 上运行的 ASP Classic 站点上收到服务器错误。

我已将“向浏览器发送错误”设置为 True,但我仍然收到以下错误屏幕: 500 - 服务器内部错误。您要查找的资源有问题,无法显示。

I am receiving a Server Error on an ASP Classic site running on IIS 7.5.

I have "Send Errors To Browser" set to True, however I still receive the following error screen:
500 - Internal server error.  There is a problem with the resource your are looking for, and it cannot be displayed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仙女 2024-11-22 05:51:57

IIS 正在劫持您的经典 ASP 应用程序的响应。在您的 web.config 文件中,确保配置以下内容:

<configuration>
    <system.webServer>
        <httpErrors existingResponse="PassThrough"/>
    </system.webServer>
</configuration>

另外,请确保您已在 IIS 管理器中为您的站点启用 ASP 配置功能中的“将错误发送到浏览器”:

在此处输入图像描述

IIS is hijacking your classic ASP app's response. In your web.config file ensure that the following is configured:

<configuration>
    <system.webServer>
        <httpErrors existingResponse="PassThrough"/>
    </system.webServer>
</configuration>

Also make sure that you've enabled "Send Errors To Browser" in the ASP configuration feature for your site in IIS manager:

enter image description here

enter image description here

﹉夏雨初晴づ 2024-11-22 05:51:57

就我而言,我的网站需要是一个 IIS 应用程序,而不仅仅是一个虚拟目录,

In my case my site needed to be an IIS Application, rather than just a virtual directory,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文