I added the following to all the web.configs in my app. But I still can't see the errors remotely. How could this be?
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
I added the following to all the web.configs in my app. But I still can't see the errors remotely. How could this be?
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
the reason is, you need to set debug to true:
<configuration>
<system.web>
<compilation debug="true" />
<customErrors mode="Off"/>
</system.web>
</configuration>
customErrors mode is meant for debugging purposes and won't work once deployed to the server unless you set compilation debug="true".