Reputation: 121840
I was reading some posts on Coding Horror blog about working with the horrors of tag soup. It seems like the only way to simplify html generation is to use a templating engine.
Do you know any templating engine for ASP.NET MVC framework?
Upvotes: 3
Views: 9105
Reputation:
there are many view engines for asp.net mvc framework:
http://www.codeplex.com/MVCContrib
Upvotes: 3
Reputation: 713
StringTemplate is a decent alternative.
Here's the ViewEngine (with Source), and some tutorials.
Upvotes: 3