ASP.net customerrors and detailed errors via web.config

With asp 4 used, you can place the following in your web.config file to get the true IIS errors and detailed errors. 

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

 
<system.webServer>
   
<httpErrors errorMode="Detailed"/>
 
</system.webServer>
</configuration>
Remember to place the parts in red in to the proper places in the web.config .
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to upload / create your site.

Creating your site How you create your site depends on what you want to do with it.  You...

Wordpress on Windows IIS7

When installing wordpress on windows servers with IIS7, it is important to use the following...

Standard Mail Settings

Mail Server Info: Login: Is your full email address (example@example.com) Incoming mail...

MSSQL Transaction Log Shrink via MSSQL manager / mylittleadmin

To shrink the MSSQL transaction log via mylittleadmin / mssql manager, do the following...

What is an SSL certificate?

An SSL certificate encrypts data that is sent between the server and you, your computer, your...