You can enable detailed error messages for your classic ASP site defaulted to Windows/IIS by using a web.config file with the following code. This is useful in diagnosing issues with a site but for security reasons should be turned off once the site is in production:
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
</system.webServer>
</configuration>
For more information regarding the syntax and use of <httpErrors>, please see this article from iis.net.
© 2011-2013 Rackspace US, Inc.
Except where otherwise noted, content on this site is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License

0 Comments
Add new comment