MasterPage/ContentPage with NVelocity and ASP.NET MVC? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:19:47Zhttp://stackoverflow.com/feeds/question/957792http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/957792/masterpage-contentpage-with-nvelocity-and-asp-net-mvc0MasterPage/ContentPage with NVelocity and ASP.NET MVC?jrista2009-06-05T19:46:37Z2009-06-06T16:50:10Z
<p>I am a big fan of NVelocity. I think its terse syntax is a huge boon, and helps keep my views simple and effective. I have begun using the NVelocity view engine from the Mvc Contrib project for ASP.NET MVC, along with the Castle NVelocity .vm syntax highlighter. </p>
<p>While I love what NVelocity brings to the table, I am really missing one feature of ASP.NET .aspx views that I find immensely useful: Master Pages. </p>
<p>Does anyone know if there is an NVelocity view engine for ASP.NET MVC that provides Master/Child pages like classic .aspx views? Does the MVCContrib project from Codeplex support this (at the moment there is a total void of documentation for the MVCContrib NVelocity view engine.)</p>
<p>Any help is greatly appreciated. </p>
http://stackoverflow.com/questions/957792/masterpage-contentpage-with-nvelocity-and-asp-net-mvc/960090#9600900Answer by jrista for MasterPage/ContentPage with NVelocity and ASP.NET MVC?jrista2009-06-06T16:50:10Z2009-06-06T16:50:10Z<p>Well, as it turns out, the NVelocity View Engine for ASP.NET MVC does have some basic master/child content capabilities. There is a simple #parse() command that may be used to render child views...when used with the $childContent template variable, a simple master/content page relationship is born:</p>
<pre><code><head>
<title>My Page with Master Page</title>
<link href="$Url.Content('~/Views/Common/Site.css')" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
#parse("shared/header.vm")
</div>
<form>
<div id="content">
#parse($childContent)
</div>
<div id="footer">
#parse("shared/footer.vm");
</div>
</form>
</body>
</code></pre>