vote up 3 vote down star
4

I was wondering if there was a general consensus on the "best" alternative view engine for asp.net MVC. So far I know of Spark, Brail, NHaml but what about others?

flag

duplicate: stackoverflow.com/questions/523644/…, stackoverflow.com/questions/173207/… – Mauricio Scheffer Mar 17 at 3:32
is a template engine the same as a view engine? if so i did not know that – codette Mar 18 at 2:21
not exactly the same, but I'd say that view engines build upon template engines, so wherever there's a view engine there's a template engine underneath – Mauricio Scheffer Mar 25 at 16:53

3 Answers

vote up 2 vote down check

I would suggest that you take each of the above View Engines, write a view, and see which works best for you. You might find that for different applications or even for differnt types of view that the choice of View Engine changes.

If you're returning HTML to your client then an engine like Spark might be appropriate. However, if the conent you're returning is XML or some other markup (JSON for example) then Spark won't be much help. NHaml is also focused on XHTML generation.

Consider how you want to test your views, the skill set of your engineers (both developers and testers), the level of support you're hoping to get from your View Engine writer (if you find bugs, how you want those bug fixes deployed) and whether your customer has any preference.

Basically - try a few, see what you like, use a mixture of them if you find that makes sense.

Oh, and here's a good post that lists 4 alternative engines...

http://codebetter.com/blogs/jeffrey.palermo/archive/2008/01/27/mvccontrib-now-offers-four-4-alternative-view-engines-for-asp-net-mvc.aspx

... it mentions an XSLT engine that might be appropriate if you're looking to generate XML.

link|flag
vote up 1 vote down

In software, there are no "best" alternative. It always depends in your background, the company you work for, your preferences, your tastes, etc.

Just pick what work best for you for the current project. If you are not sure, pick the safe way, the MS way :)

link|flag
i hear what you're saying Eduardo and yes, the MS way seems like the safe way to go but i read about so many complaints about the MS way (namely regarding tag soup). When I look at Spark for example the markup looks much more elegant. I guess I'll just try Spark :) – codette Mar 27 at 16:42
vote up 0 vote down

StringTemplate is a decent alternative.

Here's the ViewEngine (with Source), and some tutorials.

link|flag

Your Answer

Get an OpenID
or

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