Forum Moderators: open
It runs okay if I don't have a Web.Config file and it also runs okay if I just have the default Web.Config that is created for the website in Visual Stuidio 2005.
However, if I add a urlmapping such as:
<urlMappings enabled="true">
<add url="~/test.aspx" mappedUrl="~/default.aspx?tab=test" />
</urlMappings>
I get the following error page.
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>
What is baffling me though, is that I already have the CustomErrors mode set to 'Off'.
<system.web>
<customErrors mode="Off" />
Any help would be appreciated because I've come to dead end on this one.