Spoike
Spoike

Reputation: 121840

What templating engines are available for ASP.NET MVC Framework?

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

Answers (3)

user434917
user434917

Reputation:

there are many view engines for asp.net mvc framework:

  • The Razor view engine is built in to ASP.NET MVC
  • Web forms view engine(default)
  • Spark view engine
  • Nhamle view engine
  • … all community contributions on the asp.net mvc framework including view engines can be found on

http://www.codeplex.com/MVCContrib

Upvotes: 3

kolosy
kolosy

Reputation: 3099

NDjango - django templates in .net

Upvotes: 3

jamisonLikeCode
jamisonLikeCode

Reputation: 713

StringTemplate is a decent alternative.

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

Upvotes: 3

Related Questions