ASP.NET Custom Error Pages

From Hostek.com Wiki
Revision as of 09:09, 22 November 2012 by Carlb (Talk | contribs) (Created page with "==Disabling ASP.NET Customer Error Pages== To disable custom error pages for ASP.NET you'll need to add the following to your web.config file: <pre> <!-- Web.Config Configura...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Disabling ASP.NET Customer Error Pages

To disable custom error pages for ASP.NET you'll need to add the following to your web.config file:

<!-- Web.Config Configuration File -->

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