MasterPage/ContentPage with NVelocity and ASP.NET MVC? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:19:47Z http://stackoverflow.com/feeds/question/957792 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/957792/masterpage-contentpage-with-nvelocity-and-asp-net-mvc 0 MasterPage/ContentPage with NVelocity and ASP.NET MVC? jrista 2009-06-05T19:46:37Z 2009-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#960090 0 Answer by jrista for MasterPage/ContentPage with NVelocity and ASP.NET MVC? jrista 2009-06-06T16:50:10Z 2009-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>&lt;head&gt; &lt;title&gt;My Page with Master Page&lt;/title&gt; &lt;link href="$Url.Content('~/Views/Common/Site.css')" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="header"&gt; #parse("shared/header.vm") &lt;/div&gt; &lt;form&gt; &lt;div id="content"&gt; #parse($childContent) &lt;/div&gt; &lt;div id="footer"&gt; #parse("shared/footer.vm"); &lt;/div&gt; &lt;/form&gt; &lt;/body&gt; </code></pre>