Difference between revisions of "ASP.NET Custom Error Pages"

From Hostek.com Wiki
Jump to: navigation, search
(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...")
 
(No difference)

Latest revision as of 09:09, 22 November 2012

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>