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

Ravi picture Ravi · Oct 31, 2009 · Viewed 9.3k times · Source

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

Answer

Richard Garside picture Richard Garside · Oct 31, 2009

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);