Classic ASP Sending errors to browser does not wor

2019-02-08 05:53发布

I can’t get detailed error reporting for IIS7 for ASP pages on a remote browser connection. However, when I run the page locally on the server I do see a detailed error message.

I have enabled Send Errors To Browser but IIS keeps sending an internal server error.

I have unchecked show friendly HTTP error messages on IE.

Does anyone know how to enable error messages to be sent to a remote browser?

6条回答
趁早两清
2楼-- · 2019-02-08 06:00

under prompt

  1. go to %windir%\system32\inetsrv
  2. execute inetmgr
  3. in the IIS MMC select "web sites" from the three on the left
  4. open the menu action\properties.
  5. in the home directory tab select "configuration..."
  6. in the tab "debug" enable the send error to the client and flag both the checkboxes.
  7. confirm all
  8. restart IIS.

I had the same error and I solved following the above steps.

查看更多
Animai°情兽
3楼-- · 2019-02-08 06:03

There is an ASP setting you need to change in IIS 7

Under the IIS heading, open the ASP properties, and under Compilation, expand the Debugging Properties, there you'll find:

  • Send Errors To Browser

Set it to True

As you've already done, you need to disable the show friendly HTTP error messages in IE.

查看更多
beautiful°
4楼-- · 2019-02-08 06:06

Simply Add following line under this

<?xml version="1.0" encoding="UTF-8"?>
  <configuration>
    <system.webServer>
      <httpErrors errorMode="Detailed" />
    </system.webServer>
</configuration>

And You are done..

查看更多
闹够了就滚
5楼-- · 2019-02-08 06:09

IIS
  - Error Pages
      - Edit Feature Settings
        - Check: Detailed errors

IIS
  - ASP
    - Compilation
      - Debugging Properties
        - Set: Enable Server-side Debugging = False
        - Set: Send Errors To Browser = True

In my case Server-side Debugging was on and it was not displaying error details on remote side. It started showing error details as soon I set Enable Server-side Debugging = False.

查看更多
成全新的幸福
6楼-- · 2019-02-08 06:16

By default IIS7 intercepts HTTP status codes such as 4xx and 5xx generated by applications further up the pipeline.

In web.config replace the line

<httpErrors errorMode="Detailed">

with

<httpErrors existingResponse="PassThrough" errorMode="Detailed">
查看更多
我命由我不由天
7楼-- · 2019-02-08 06:18

If "Send Errors To Browser" is not working set also this:

Error Pages -> 500 -> Edit Feature Settings -> "Detailed Errors"

查看更多
登录 后发表回答