How to set web.config file to show full error message

Not sure if it’ll work in your scenario, but try adding the following to your web.config under <system.web>:

<system.web>
    <customErrors mode="Off" />
    ...
</system.web>

works in my instance.

also see:

CustomErrors mode=”Off”

Leave a Comment