How to configure web.config to see full error message for ASP.NET MVC3 project

How to configure web.config to see the full error message for an ASP.NET MVC3 project remotely?

So I need detailed error information ...

I have this under web.config, but it doesn't seem to work ...

<system.web>
 <customErrors mode="off" />
+3
source share
1 answer

Finally, I found a solution.

We need to <customErrors mode="off" />also reload the website in IIS.

+5
source

All Articles