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.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
there is no web.config in a Classic ASP site. Should I create one and add that setting? – smartcaveman Jun 13 '11 at 10:56
@smartcaveman - yes. web.config in IIS7.x isn't just specific to ASP.NET. It can be used to config IIS settings as well, such as IIS's custom error handling. – Kev Jun 13 '11 at 11:01
@smartcaveman - I updated the answer to show exactly what it should look like. – Kev Jun 13 '11 at 11:02
those are my settings, as I posted in the question. I will create a web.config and get back to you. – smartcaveman Jun 13 '11 at 11:19
feedback

There are a couple of things you can try, using the IIS Manager GUI under the website in question, open Error Pages and then click "Edit Feature Settings..." By default the detailed errors are only served to the localhost, so try enabling them for remote hosts as well.

Error Pages, Feature Settings dialog

You could also edit Web.config's system.web node, adding <customErrors mode="Off" />.

<system.web>
 ...
 <customErrors mode="Off" />
 ...
</system.web>
link|improve this answer
The <customErrors> section only applies to ASP.NET applications and has no effect on classic ASP. – Kev Jun 13 '11 at 8:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.