I'm getting a runtime error on one of my web pages.
The error tells me to set customErrors mode="Off" in the web.config file, which makes no difference. (I assume the server is configured not to throw specific errors)
My config file looks like this.
<?xml version="1.0"?>
<configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0"/>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
It runs fine locally. Is there a way for me to see exactly what is causing the error?
 
     
    