how to create themes and skin in asp.net mvc?

9.4k Views Asked by At

Anyone point me to any article that describes how to use themes and skins in an asp.net mvc application?

3

There are 3 best solutions below

0
On

I would use different CSS files as George suggests. You can achieve an awful lot this way. See CSS Zen Garden for examples of just how much you can do.

If this doesn't give you enough control then you can also specify a master page in your controller like this:

return View(stringViewName, stringMasterName, model);
2
On

For ASP.NET MVC, you don't have the ASP.NET 'Themes' mantra, you typically use CSS.

0
On

this guy uses a custom view engine to solve this problem, I like this solution better than ASP.MET MVC Dynamic Themes, however I didn't tested any of both, I'm still looking for something.