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
Post a Comment