Jump to content

Recommended Posts

Posted

Here is what my web.config looks like for showing remote error messages.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.web>
   <customErrors mode="Off"/>
   <compilation>
       <assemblies>
           <add assembly="*"/>
       </assemblies>
   </compilation>
</system.web>
</configuration>

The major difference I see is my <customErrors mode="Off"/> is outside the <compilation></compilation> tags. Try that and let us know if it works.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...