Reputation: 607
I'm having problem with themems. I have app_themes folder in my application that have a mytheme folder.In that folder I hvae placed a css file. I have used this theme thruoghout the application. using the web config file....follwing is the code.
<System.web>
<pages theme="mytheme"></pages>
</System.web>
it's worikng fine..but problem is tht i dont want htis theme on a particular page.
for this i have used
Enablingtheme ="false"
in pagedirective.but it is still appliying to the page.
Please suggest something to me...
thanx in advance.. ...
Upvotes: 1
Views: 131
Reputation: 44268
Well EnablingTheme
is not the correct property name. it's
EnableTheming="false"
I'd check that you haven't a typo in there first.
Upvotes: 2