web config - Disabling themes in a subdirectory with ASP.NET -


this should simple one. using program has themes defined in web.config file. want turn these off subdirectory.

i copied web.config subdirectory , tried removing theme attribute pages element on web.config didn't me anywhere. got bunch of errors elements apparently not allowed in non-root web.config files removed of elements, still getting same error.

i tried adding enabletheming="false" in aspx page header, thing defines language=c#, etc., didn't work either.

so if can tell me tested, confirmed way make work, appreciate that. using .net framework 2.0 on server 2003.

got basic web.config:

<?xml version="1.0"?> <configuration>         <system.web>                 <pages theme="" />         </system.web> </configuration> 

Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -