ASP.NET MVC View Engines (Community Wiki)
Since a comprehensive list does not appear exist, let's start one here on SO. This can be of great value to the ASP.NET MVC community if people add their experience (esp. anyone who contributed to one of these). Anything implementing IViewEngine (e.g. VirtualPathProviderViewEngine) is fair game here. Just alphabetize new View Engines (leaving WebFormViewEngine at the top), and try to be objective in comparisons.
System.Web.Mvc.WebFormViewEngine
Design Goals:
A view engine that is used to render a
Web Forms page to the response.
Pros:
- ubiquitous since it ships with ASP.NET MVC
- familiar experience for ASP.NET developers
- strongly-typed
- IntelliSense
- compiled form
Cons:
- usage is confused by existence of "classic ASP.NET" patterns which no longer apply in MVC (e.g. ViewState PostBack)
- can contribute to anti-pattern of "tag soup"
- code-block syntax and strong-typing can get in the way
- IntelliSense enforces style not always appropriate for inline code blocks
- can be noisy when designing simple templates
Brail
Design Goals:
The Brail view engine has been ported
from MonoRail to work with the
Microsoft ASP.NET MVC Framework. For
an introduction to Brail, see the
documentation on the Castle project
website.
Pros:
- modeled after "wrist-friendly python syntax"
Cons:
- designed to be written in the language Boo
NDjango
Design Goals:
NDjango is an implementation of the
Django Template Language on the .NET
platform, using the F# language.
Pros:
Cons:
- greatly tied to the fate of F#
NHaml
Design Goals:
.NET port of Rails Haml view engine.
From the Haml website:
Haml is a markup language that's used
to cleanly and simply describe the
XHTML of any web document, without the
use of inline code... Haml avoids the
need for explicitly coding XHTML into
the template, because it is actually
an abstract description of the XHTML,
with some code to generate dynamic
content.
Pros:
- terse structure (i.e. D.R.Y.)
- well indented
- clear structure
Cons:
- an abstraction from XHTML rather than leveraging familiarity of the markup
NVelocityViewEngine (MvcContrib)
Design Goals:
A view engine based upon
NVelocity which is a .NET port
of the popular Java project
Velocity.
Pros:
- easy to read/write
- concise view code
Cons:
- limited number of helper methods available on the view
- does not automatically have Visual Studio integration (IntelliSense, compile-time checking of views, or refactoring)
SharpTiles
Design Goals:
SharpTiles is a partial port of JSTL
combined with concept behind the Tiles
framework (as of Mile stone 1).
Pros:
- familiar to Java developers
- XML-style code blocks
Cons:
Spark View Engine
Design Goals:
The idea is to allow the html to
dominate the flow and the code to fit
seamlessly.
Pros:
- Produces more readable templates
Cons:
- No clear separation of template logic from literal markup
StringTemplate View Engine MVC
Design Goals:
- Lightweight. No page classes are created.
- Fast. Templates are written to the Response Output stream.
- Cached. Templates are cached, but utilize a FileSystemWatcher to detect
file changes.
- Dynamic. Templates can be generated on the fly in code.
- Flexible. Templates can be nested to any level.
- In line with MVC principles. Promotes separation of UI and Business
Logic. All data is created ahead of
time, and passed down to the template.
Pros:
- familiar to StringTemplate Java developers
Cons:
- simplistic template syntax can interfere with intended output (e.g. jQuery conflict)
XsltViewEngine (MvcContrib)
Design Goals:
Builds views from familiar XSLT
Pros:
- widely ubiquitous
- familiar template language for XML developers
- XML-based
- time-tested
Cons:
- functional language style makes flow control difficult