vote up 4 vote down star
5

Hello, I have a ASP.Net 2.0 site and want to translate it into MVC paradigm (I'm new to this), but starting from Zero.

I have some themes in my old site, but reading here and there, it seems like Themes doesn't fit well into MVC paradigm.

The question is:

What is the best practice in MVC for building a Themed user customizable site? Can you give a little example, if applicable?

Note: I'm aware of this but they don't talk about best practices or how to start with.

flag

How much customization do you need? If it's only about colors and fonts, a simple CSS replacement will do the trick. – User Apr 20 at 20:37
Mainly I want the user be able to change the Theme, In Asp.Net 2.0 I achieve easily, and want to know how a typically MVC-ish guy will get this approach – Jhonny D. Cano -Leftware- Apr 20 at 20:51

4 Answers

vote up 4 vote down check

Here's my code that I've been using for implementing "Themes" in ASP.NET MVC:

ASP.NET MVC: Implement Theme Folders using a Custom ViewEngine

It's nice when you're able to just swap out CSS files to change the theme, but this really isn't very practical in a ton of cases. Especially when each theme needs to have a completely different layout. In which case, you need to change the CSS and HTML that gets rendered, and this is why I wrote the code found at the above link.

link|flag
vote up 6 vote down

A clean, semantically correct HTML with a good CSS is the way to theme any web app, whether it's ASP.NET, RoR, PHP, etc.

The best example of the power of CSS is CSS Zen Garden.

w3schools has a nice introduction/tutorial to CSS.

link|flag
3  
Don't listen to him. Full blow of HTML and CSS to the WebForms guy can cause health damage. Slowly, one step at a time, first, regions on a page, then complete pages. In a few month you'll be getting it. – User Apr 20 at 20:30
vote up 2 vote down

As themes were intended to style up tags you can use CSS to create a similar approach. I would probably recommend that you start with copying your default themes over to css definitions e.g.

html: <input type="button" />

css: input { color : light-blue }

Then for anything that had your non-default theme you can just apply classes to them. It takes a while to re-write all your themes as CSS, but once done it's worth the effort.

link|flag
vote up 0 vote down

jQuery-ui themes are nice, and not too hard to implement.

Just link to the js and css file and don't forget the icons. And make sure to use Url.Content() in those links. Otherwise it might not be linked to the correct path, once you deploy it on a production server (i fell into that trap once).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.