How to create themes and skins in asp.net mvc?

Does anyone point me to any article that describes the use of themes and skins in an asp.net mvc application?

+5
source share
3 answers

I would use different CSS files, as George suggests. You can do so much. See CSS Zen Garden for examples of how much you can do.

If this does not give you enough control, you can also specify the main page in your controller as follows:

return View(stringViewName, stringMasterName, model);
+2
source

For ASP.NET MVC you do not have the ASP.NET Themes mantra, you usually use CSS .

+1

this guy uses a custom viewer to solve this problem, I like this solution better than ASP.MET MVC Dynamic Themes, however I didn I tested none of them, I was still looking for something.

0
source

All Articles