Users who use Godaddy windows often encounter a 500 error, but they do not know what went wrong. The following describes how to create a web. config file to display detailed error information.
By default, if your. netProgramWhen an error occurs, the client displays the following error:
Server Error in '/mytestapp' application.
Runtime error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed.
You can create or modify the Web. config file to display detailed errors:
<! -Web. config configuration file->
<Configuration>
<System. Web>
<Customerrors mode = "remoteonly"/>
</System. Web>
</Configuration>
If you change remoteonly to off, the detailed error message is displayed.
In addition, you can use the web. config file to configure the 404 error page and MIME type.