Here is my Web.config file:

<?xml version="1.0"?>
<configuration>
    <system.web>
        <customErrors mode="Off" />    
        <compilation debug="true" strict="false" explicit="true />    
        <pages>
          <namespaces>
            <clear />
            <add namespace="System" />
            <add namespace="System.Collections" />
            <add namespace="System.Collections.Generic" />
            <add namespace="System.Collections.Specialized" />
            <add namespace="System.Configuration" />
            <add namespace="System.Text" />
            <add namespace="System.Text.RegularExpressions" />
            <add namespace="System.Web" />
            <add namespace="System.Web.Caching" />
            <add namespace="System.Web.SessionState" />
            <add namespace="System.Web.Security" />
            <add namespace="System.Web.Profile" />
            <add namespace="System.Web.UI" />
            <add namespace="System.Web.UI.WebControls" />
            <add namespace="System.Web.UI.WebControls.WebParts" />
            <add namespace="System.Web.UI.HtmlControls" />
          </namespaces>
          <controls>
            <add src ="~/controls/maleBed.ascx" tagPrefix ="mycontrol" tagName ="male"/>
            <add src ="~/controls/femaleBed.ascx" tagPrefix ="mycontrol" tagName ="female"/>
          </controls>
        </pages>
    </system.web>
</configuration>

Even with customErrors mode set to Off (and its definitely a capital "O") its still showing me the default errors page telling me to set this property before I can see that actual error remotely.

I don't have a machine.config file, and I've also set this customErrors mode="Off" in the Web.Debug.config and the Web.Release.config.

Any ideas anyone?

Thank you very much.

Edit - what its showing:

Server Error in '/' Application

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 remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: 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>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

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

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
link|improve this question

Did you ever figure this out? – Sean Aug 22 '11 at 3:03
Nope... we had to get windows dedicated hosting. – Thomas Clayson Aug 22 '11 at 8:19
feedback

4 Answers

Those settings look correct to me.

Are you positive you're looking at the right web.config file? Are you overriding any of these values in your page directive(s)?

Consider posting your whole web.config (sans private info).

EDIT: Also, what is it showing when you view the page?

link|improve this answer
that is my whole web.config file... :/ it looks correct to me too. I'll have a look, but I don't think I'm overriding them anywhere – Thomas Clayson Feb 18 '11 at 15:54
edited to say what its showing – Thomas Clayson Feb 18 '11 at 16:37
I'm out of ideas man...may be a mono quirk. Might be worth restarting services. – clifgriffin Feb 18 '11 at 16:43
ill try that. thanks buddy – Thomas Clayson Feb 18 '11 at 16:45
feedback

I found that I actually had to restart apache after making changes to the web.config file...

link|improve this answer
feedback
up vote 0 down vote accepted

Couldn't find an answer - we had to get Windows based hosting.

link|improve this answer
feedback

In the Line

<compilation debug="true" strict="false" explicit="true />

in your code is wrong. Here the correction:

<compilation debug="true" strict="false" explicit="true" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.