<customErrors mode="Off"/> PROBLEM

  • Thread starter Thread starter Savas Ates
  • Start date Start date
S

Savas Ates

I have a web application It works well in my local fodler.. When i upload it
to my web server i got

To enable the details of this specific error message to be viewable on
remote machines, please create a <customErrors> tag within a "web.config"
configuration file located in the root directory of the current web
application. This <customErrors> tag should then have its "mode" attribute
set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
 
What is the problem? If you want to see detailed error messages, just follow
the advice.

Eliyahu
 
Back
Top