T
thersitz
hi,
I have some rented web space -- it is suppose to have asp.net 2.0 loaded.
I can drop a default.aspx file in the directory and it will load. Currently
in that file i have only basic html -- no asp.net code.
If I drop a web.config file in the root directory, I then cannot get the
file to load, instead get the default error page -- which tells me if I want
to see the problem, I need to add <customErrors mode="Off"/> to the
web.config file -- which I have done -- but it still shows the same default
error page and does not recognize the <customErrors mode="Off"/> line. Below
is the basic config file I am using. Can anyone give me an idea of what I am
doing wrong. thanks
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings />
<connectionStrings />
<system.web>
<compilation defaultLanguage="vb" debug="false" />
<authentication mode="None" />
<customErrors mode="Off" />
</system.web>
</configuration>
I have some rented web space -- it is suppose to have asp.net 2.0 loaded.
I can drop a default.aspx file in the directory and it will load. Currently
in that file i have only basic html -- no asp.net code.
If I drop a web.config file in the root directory, I then cannot get the
file to load, instead get the default error page -- which tells me if I want
to see the problem, I need to add <customErrors mode="Off"/> to the
web.config file -- which I have done -- but it still shows the same default
error page and does not recognize the <customErrors mode="Off"/> line. Below
is the basic config file I am using. Can anyone give me an idea of what I am
doing wrong. thanks
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings />
<connectionStrings />
<system.web>
<compilation defaultLanguage="vb" debug="false" />
<authentication mode="None" />
<customErrors mode="Off" />
</system.web>
</configuration>