![]() |
![]() |
How to configure your Web.Config file to show Detailed 500 error, like classic asp. |
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <httpErrors errorMode="Detailed" existingResponse="PassThrough"> </httpErrors> </system.webServer> </configuration> |