tags:

views:

698

answers:

3

Hello,

I'm planning to design simple website using ASP.NET MVC new technology. Many concepts are changed there comparing to classic webforms so my question is how to prepare website to be able to change its skin or apply different branding, preferably using for this purpose different dns request name?

App_themes is not possible to use?

Thanks in advance for any clues

Tom.

+4  A: 

And App_Themes was never any good anyway. It's limited. Just use stylesheets, to change the theme you can include a different stylesheet. As long as your markup is good then you won't have a problem. (see this post)

Kezzer
+1  A: 

Have a look at Oxite. This blog app also has got skinning functionality.

kay.herzam
A: 

Another more flexible option is to create a different master page, which can have a completely different html/css structure. When your views load, you can change the master page on the fly.

Kevin