Preferred Language:

Listing 1.20 - Web.Config

Illustrates how you can disable custom errors so that you can view error messages.

Listing 1.20 - Web.config
Copy

<?xml version="1.0"?>
<configuration>
    <system.web>
        <compilation debug="true" />
        <customErrors mode="Off" />
    </system.web>
</configuration>