active questions tagged viewengine - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T07:26:49Zhttp://stackoverflow.com/feeds/tag/viewenginehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1451319/asp-net-mvc-view-engine-comparison11ASP.NET MVC View Engine ComparisonMcKAMEY2009-09-20T15:47:47Z2009-12-04T02:33:25Z
<p><strong>EDIT:</strong> added a community wiki to begin capturing people's experience with various View Engines. Please respectfully add any experiences you've had.</p>
<p><hr /></p>
<p>I've been searching on SO & Google for a breakdown of the various View Engines available for ASP.NET MVC, but haven't found much more than simple high-level descriptions of what a view engine is.</p>
<p>I'm not necessarily looking for "best" or "fastest" but rather some real world comparisons of advantages / disadvantages of the major players (e.g. the default WebFormViewEngine, MvcContrib View Engines, etc.) for various situations. I think this would be really helpful in determining if switching from the default engine would be advantageous for a given project or development group.</p>
<p>Has anyone encountered such a comparison?</p>
http://stackoverflow.com/questions/1800537/when-is-the-masterpagefile-located-in-asp-net-mvc-webforms-viewengine0When is the MasterPageFile located in ASP.NET MVC WebForms ViewEngineBaddie2009-11-25T22:59:16Z2009-12-01T17:04:52Z
<p>When is the MasterPageFile property of a view/page checked that it exists in ASP.NET MVC WebForms view engine?</p>
<p>What I want to do is have the following code not output the error:</p>
<blockquote>
<p>Parser Error Message: The file '/SomePlaceThatDosentExist/Site.Master' does not exist.</p>
</blockquote>
<p>Defined as such in my view's .aspx file:</p>
<pre><code><%@ Page Language="C#" MasterPageFile="~/SomePlaceThatDosentExist/Site.Master" Inherits="System.Web.Mvc.ViewPage" >
</code></pre>
<p>Where would I need to write some code to go in and define a valid MasterPageFile property?</p>
<p>I have tried the following in my custom ViewPage class that my views inherit</p>
<pre><code> public override string MasterPageFile
{
get
{
return base.MasterPageFile;
}
set
{
base.MasterPageFile = "~/RealPlace/Site.Master";
}
}
</code></pre>
<p>and tried the following also (in a custom view page class that my views inherit)</p>
<pre><code> protected override void OnPreInit(EventArgs e)
{
base.MasterPageFile = "~/RealPlace/Site.Master";
base.OnPreInit(e);
}
</code></pre>
<p>In both cases, the error I stated above is displayed. </p>
<p>From what I know, OnPreInit is the earliest point in a ViewPage's lifecycle, so is it possible to go even earlier in the lifecycle?</p>
<p>Note before you write and answer:</p>
<ul>
<li>I know about return View("ViewName", "MasterPageName");</li>
<li>I know about dynamic master pages, but I want to accomplish this specific task</li>
</ul>
http://stackoverflow.com/questions/1718781/what-are-the-benefits-of-using-an-alternate-view-engine5What are the benefits of using an alternate view engine?Wayne M2009-11-11T23:18:14Z2009-11-19T23:30:59Z
<p>I am playing with ASP.NET MVC and I see that there are a few alternate view engines available for it such as NHaml and Spark. My question is <strong>why</strong> would you use an alternate view engine? I don't see a benefit to having something like this:</p>
<pre><code><ul if="products.Any()">
<li each="var p in products">${p.Name}</li>
</ul>
<else>
<p>No products available</p>
</else>
</code></pre>
<p>using the Spark view engine (doubly so since, and I haven't used Spark to verify this and might be totally wrong, you wouldn't get Intellisense since you're passing the code as a string) and:</p>
<pre><code><% if products.Any() { %>
<ul>
<% foreach (var p in products) { %>
<li><%= p.Name %></li>
<% } %>
</ul>
<% } else { %>
<p>No products available</p>
<% } %>
</code></pre>
<p>using the built-in ASP.NET MVC template format (although I admit the dangling curly brace is pretty ugly). Is there any legitimate reason apart from not like the "gator" tags (or dangling curly braces) to consider using an alternate view engine? Or is it just cool because it's something new?</p>
http://stackoverflow.com/questions/608430/calling-another-controller-action-after-the-current-controller-action-has-finishe0Calling another controller action after the current controller action has finished executinganil2009-03-03T22:11:17Z2009-11-12T01:54:53Z
<p>What I am trying to achieve:</p>
<ol>
<li><p>After <strong>each</strong> view has finished executing I would like to make a separate http call to an external partner.</p></li>
<li><p>I need to pass one of the view's content as body of that http call.</p></li>
</ol>
<p>What I have so far:</p>
<p>I have a base controller from which all of my controllers inherit from. </p>
<p>I have found that i can override the onActionExecuted() method of the base controller and write my partner http call code there so that it will be executed after each action.</p>
<p>I have written a custom result after reading the article at <a href="http://stackoverflow.com/questions/520863/send-asp-net-mvc-action-result-inside-email">http://stackoverflow.com/questions/520863/send-asp-net-mvc-action-result-inside-email</a>. which enables me to grab the content of the view. (which is part of another controller that also inherits from base controller).</p>
<p>What I can't figure out:</p>
<ol>
<li>How do I make a call to the controller action (the one that will render the content for the http calls body) to get the content in my base controller onActionExecuted() method?</li>
</ol>
<p>anil</p>
http://stackoverflow.com/questions/886267/find-the-atrributes-on-an-action-from-the-viewengine-in-asp-net-mvc1Find the atrributes on an action from the ViewEngine in ASP.NET MVCGlenn Slaven2009-05-20T05:22:29Z2009-11-02T14:38:49Z
<p>I've got a custom ViewEngine and I want to modify the master page used depending on if the requested action has an <code>Authorize</code> attribute filter.</p>
<p>So far I'm just using reflection like this:</p>
<pre><code>var method = controllerContext.Controller.GetType().GetMethod(viewName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
if (method != null)
{
if (method.GetCustomAttributes(typeof(AuthorizeAttribute), true).Length > 0)
{
masterName = "Admin.master";
}
}
</code></pre>
<p>But I'm not a huge fan of using reflection for repetitive tasks. I know I can use the view cache to speed things up after the first time, but I'm wondering if there is a more direct way to get access to the list of filters applied to the action inside the <code>FindView</code> method of the <code>ViewEngine</code>?</p>
http://stackoverflow.com/questions/1613088/how-to-use-mvc-action-results-from-regular-web-forms-faking-controllercontext1How to use MVC Action Results from regular web forms (faking ControllerContext)?intoorbit2009-10-23T12:24:20Z2009-10-24T13:36:17Z
<p>We have a pluggable framework that returns <code>ActionResult</code> objects that render things to a browser. One late breaking requirement is that our plugins should be callable from a regular ASP.NET Web Forms application.</p>
<p>So far I have come up with this, which works for very basic ActionResults:</p>
<pre><code>public class ActionResultTranslator {
HttpContextBase _context;
public ActionResultTranslator(HttpContextBase context ) {
_context = context;
}
public void Execute(ActionResult actionResult) {
ControllerContext fakeContext = new ControllerContext();
fakeContext.HttpContext = _context;
actionResult.ExecuteResult(fakeContext);
}
}
</code></pre>
<p>You would call the above from a web form with:</p>
<pre><code>protected void Page_Load(object sender, EventArgs e) {
HttpContextWrapper contextWrapper = new HttpContextWrapper(this.Context);
var translator = new ActionResultTranslator(contextWrapper);
translator.Execute(new RedirectResult("http://google.com"));
}
</code></pre>
<p>What else do I need to do to hook everything up? For example, what if I wanted to return a ViewResult?</p>
http://stackoverflow.com/questions/1614246/asp-net-mvc-custom-view-engine-not-being-called1ASP.NET MVC Custom View Engine Not Being Called.Jeff French2009-10-23T15:34:25Z2009-10-23T16:59:26Z
<p>I am attempting to impliment a custom view engine to serve mobile views based on the user agent. I am following Scott Hanselman's approach from <a href="http://www.hanselman.com/blog/MixMobileWebSitesWithASPNETMVCAndTheMobileBrowserDefinitionFile.aspx" rel="nofollow">this blog post</a>.</p>
<p>I have inherited from the WebFormsViewEngine and overridden the FindView method the same way that Scott describes in his blog.</p>
<p>I then added a few lines to my Global.asax Application_Start method to clear the view engine collection and add a new instance of my view engine. </p>
<p>After some testing it would appear that MVC is ignoring my view engine. When it failed to find my custom views based on the user agent of the browser I resorted to hardcoding the custom path to to append to the view and it still managed to fall back on the default view. I set a breakpoint in my FindView method and sure enough, it's not being called at all.</p>
<p>How can I get my custom view engine to work? Any help will be much appreciated.</p>
<p>My view engine looks like this:</p>
<pre><code>public class MyViewEngine: WebFormsViewEngine
{
public override ViewEngineResult FindView (ControllerContext controllerContext, string viewName, string masterName, bool useCache)
{
ViewEngineResult result = null;
//Serve a special view for iPhones
if (UserAgentIs(controllerContext, "iPhone"))
{
result = base.FindView(controllerContext, "Mobile/iPhone/" + viewName, masterName, useCache);
}
//If no special view is found, fall back to the default view
if (result == null || result.View == null)
{
result = base.FindView(controllerContext, viewName, masterName, useCache);
}
return result;
}
private bool UserAgentIs(ControllerContext controllerContext, string userAgentToTest)
{
return (controllerContext.HttpContext.Request.UserAgent.IndexOf(userAgentToTest, StringComparison.OrdinalIgnoreCase) > 0);
}
}
</code></pre>
<p>And in my Global.asax:</p>
<pre><code>protected void Application_Start()
{
RegisterRoutes(RouteTable.Routes);
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new MyViewEngine());
}
</code></pre>
<p>When this setup didn't work I even tried to simplify my FindView method to this:</p>
<pre><code>public override ViewEngineResult FindView (ControllerContext controllerContext, string viewName, string masterName, bool useCache)
{
ViewEngineResult result = null;
result = base.FindView(controllerContext, "Mobile/iPhone/" + viewName, masterName, useCache);
return result;
}
</code></pre>
<p>And that didn't work either. It still returned the default view. And yes, the view page and master page that should be found by that statement do actually exist. I'm pretty stumped as to why this is not working. </p>
http://stackoverflow.com/questions/1563797/where-has-viewengines-defaultengine-gone-an-asp-net-mvc0Where has ViewEngines.DefaultEngine gone an asp.net MVC?lomaxx2009-10-14T01:22:18Z2009-10-14T03:52:15Z
<p>I was recently trying to get the default view engine in ASP.NET MVC 1.0 and couldn't seem to access the ViewEngines.DefaultEngine property that used to be available in the CTP and Beta versions. Does anyone know what the equivalent in the 1.0 release is?</p>
http://stackoverflow.com/questions/1468279/is-it-possible-with-asp-net-mvc-to-render-a-view-from-a-template-pulled-from-a-da3Is it possible with ASP.NET MVC to render a view from a template pulled from a database?sectrean2009-09-23T20:10:52Z2009-09-24T12:10:44Z
<p>What I'm trying to do is generate email content using different templates. </p>
<p>I think ASP.NET MVC could be a good fit for this. My controller would get the necessary data for the email and decide which view (template) to render. (It's more that just a simple mail-merge, there would need to be conditional blocks, foreach's, etc.)</p>
<p>I want to be able to store these templates in a database rather than as files in the web application, so new templates can be easily added from the web application itself. </p>
<p>Is this possible? I would prefer to be able to use the WebForms view engine, but would consider other view engines if that's not possible. I would ideally like to use typed views.</p>
http://stackoverflow.com/questions/1345649/how-to-group-partial-shared-views-for-specified-controllers2How to group partial shared views for specified controllers?Arnis L.2009-08-28T08:10:39Z2009-08-28T12:32:34Z
<p>Is it possible to tell ViewEngine to look for partial shared views in additional folders for specified controllers (while <strong>NOT</strong> for others)? </p>
<p>I'm using WebFormViewEngine.</p>
<p>This is how my PartialViewLocations looks at the moment.</p>
<pre><code> public class ViewEngine : WebFormViewEngine
{
public ViewEngine()
{
PartialViewLocationFormats = PartialViewLocationFormats
.Union(new[]
{
"~/Views/{1}/Partial/{0}.ascx",
"~/Views/Shared/Partial/{0}.ascx"
}).ToArray();
}
</code></pre>
http://stackoverflow.com/questions/1112249/what-is-the-most-usual-way-to-develop-views-in-asp-net-mvc1What is the most usual way to develop views in asp.net mvc?eKek02009-07-10T22:13:50Z2009-07-10T22:58:38Z
<p>What is the most usual way to develop views in asp.net mvc? Should I be using a view engine other than the default? As far as I know, StackOverflow is the bigger site using ASP.NET MVC, so, what they use?</p>
<p>In the pros of using view engines, it seems like they are easier than the default. In the cons, it seems that they break the original concept of views in ASP.NET MVC (using helpers), they are not very extendable and there aren't intellisense or sintax highlight on Visual Studio IDE for them.</p>
<p>What would you recommend me to do?</p>
http://stackoverflow.com/questions/1041027/what-are-the-benefits-of-using-an-alternate-asp-net-mvc-view-engine11What are the benefits of using an alternate ASP.NET MVC view engine?Robert Harvey2009-06-24T21:08:37Z2009-06-26T05:26:36Z
<p>I have looked at the usual suspects...Spark, NHaml, etc. They all seem to be syntactic sugar for those that are uncomfortable with the <% %> syntax. Are there any other tangible benefits? Syntactic sugar doesn't seem to me to be a sufficient reason to change out the entire view engine.</p>
<p><strong>Reasons posted so far:</strong></p>
<ol>
<li>Easier to transition from a different platform</li>
<li>More natural context switching</li>
<li>Better separation of concerns</li>
<li>Fewer lines of code</li>
<li>Better resistance against cross-site scripting</li>
<li>Better XHTML compliance</li>
</ol>
http://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/812991/writing-a-templatelanguage-vewengine0Writing a TemplateLanguage/VewEngineclaco2009-05-01T19:59:33Z2009-05-28T13:42:35Z
<p>Aside from getting any real work done, I have an itch. My itch is to write a view engine that closely mimics a template system from another language (Template Toolkit/Perl). This is one of those if I had time/do it to learn something new kind of projects.</p>
<p>I've spent time looking at CoCo/R and ANTLR, and honestly, it makes my brain hurt, but some of CoCo/R is sinking in. Unfortunately, most of the examples are about creating a compiler that reads source code, but none seem to cover how to create a processor for templates.</p>
<p>Yes, those are the same thing, but I can't wrap my head around how to define the language for templates where most of the source is the html, rather than actual code being parsed and run.</p>
<p>Are there any good beginner resources out there for this kind of thing? I've taken a ganer at Spark, which didn't appear to have the grammar in the repo.</p>
<p>Maybe that is overkill, and one could just test-replace template syntax with c# in the file and compile it. <a href="http://msdn.microsoft.com/en-us/magazine/cc136756.aspx#S2" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc136756.aspx#S2</a></p>
<p>If you were in my shoes and weren't a language creating expert, where would you start?</p>
http://stackoverflow.com/questions/909794/how-to-change-default-view-location-scheme-in-asp-net-mvc1How to change default view location scheme in ASP.NET MVC?Jakub Šturc2009-05-26T09:28:24Z2009-05-27T21:31:41Z
<p>I want to change view locations at runtime based on current UI culture. How can I achieve this with default Web Form view engine?</p>
<p>Basically I want to know how implement with <code>WebFromViewEngine</code> something what is <a href="http://sparkviewengine.com/documentation/viewlocations#CustomIDescriptorFilterimplementations" rel="nofollow">custom IDescriptorFilter</a> in <a href="http://sparkviewengine.com/" rel="nofollow">Spark</a>.</p>
<p>Is there other view engine which gives me runtime control over view locations?</p>
<p><hr /></p>
<p><strong>Edit:</strong> My URLs should looks following <code>{lang}/{controller}/{action}/{id}</code>. I don't need language dependent controllers and views are localized with resources. However few of the views will be different in some languages. So I need to tell view engine to looks to the language specific folder first.</p>
http://stackoverflow.com/questions/916568/asp-net-mvc-render-page-to-a-file1ASP.NET (MVC) - render page to a fileeyston2009-05-27T15:58:58Z2009-05-27T21:27:11Z
<p>Hello,</p>
<p>I have to create a bunch of static html files as console / winform job. The current solution uses a string builder. Having used ASP.NET-MVC with strongly typed view pages (System.Web.Mvc.ViewPage) I was wondering if it is possible to leverage these view pages and have them output to a stream or file without building an ASP.NET solution.</p>
<p>Essentially I'd like to create the viewpage, pass in the strongly typed object, and render the result.</p>
<p>I'm also open to other view engines.</p>
<p>If this ends up requiring bringing over the whole kitchen sink, then I can just do a string builder style.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/649768/alternative-asp-net-mvc-view-engines4alternative asp.net MVC view enginescodette2009-03-16T09:37:54Z2009-05-16T04:28:19Z
<p>I was wondering if there was a general consensus on the "best" alternative view engine for asp.net MVC. So far I know of Spark, Brail, NHaml but what about others?</p>
http://stackoverflow.com/questions/729852/use-view-only-as-template0use view only as templateMarko2009-04-08T12:55:32Z2009-04-08T13:00:42Z
<p>Hi all,</p>
<p>I am struggling with WiewUserControls.
What I want to accomplish is View without knowledge of which usercontrol have to call with RenderPartial in order to render some html.</p>
<p>What I want instead is to give some kind of IViewEngine interface and then View can only call on certain place in template methods of IViewEngine that will render content.</p>
<p>any ideas?</p>
http://stackoverflow.com/questions/644655/masterlocationformats-in-webformviewengine-not-used1MasterLocationFormats in WebFormViewEngine not used?Mathias Fritsch2009-03-13T21:12:52Z2009-03-19T13:19:46Z
<p>I tried to make the ViewEngine use an additional path using:</p>
<pre><code>base.MasterLocationFormats = new string[] {
"~/Views/AddedMaster.Master"
};
</code></pre>
<p>in the constructor of the ViewEngine. It works well for aspx and ascx(PartialViewLocationFormats, ViewLocationFormats).</p>
<p>I still have to supply the MasterPage in web.config or in the page declaration. But if I do, then this declaration is used, not the one in the ViewEngine.
If I use am empty MasterLocationFormats, no error is thrown. Is this not implemeted in RC1?</p>
<p>EDIT:</p>
<p>using:</p>
<pre><code>return View("Index", "AddedMaster");
</code></pre>
<p>instead of </p>
<pre><code>return View("Index");
</code></pre>
<p>in the Controller worked.</p>
http://stackoverflow.com/questions/592022/implement-asp-net-mvc-view-engine-for-pre-processing1Implement ASP.NET MVC View Engine for pre-processingbaretta2009-02-26T19:21:21Z2009-03-09T19:38:00Z
<p>I would like to implement a ASP.NET MVC View Engine to perform some pre-processing of the original .aspx/.ascx. file.
Then, I want to pass the result to the default view engine (typically the WebForm View Engine).</p>
<p>This means, the default View Engine shouldn't read this file from disk, since this is not yet processed. Instead, i would want the View Engine to read the input from an input stream.</p>
<p>Is this possible?
Should i create a new file extension mapped to this pre-processing view engine?</p>
<p>thx</p>
http://stackoverflow.com/questions/610890/extending-webformview-in-mvc0Extending WebFormView in MVClittlecharva2009-03-04T14:48:09Z2009-03-07T02:52:55Z
<p>Howdy,</p>
<p>I want to extend the WebFormViewEngine so that I can perform some post-processing - I want it to do it's stuff, then hand me the Html back, so I can do put some final touches to it. It needs to be done as a View/ViewEngine because I need access to the ViewData.</p>
<p>Unfortunately there seems to be no way to get the Html back from the WebFormView, and no way to hand a custom HtmlTextWriter to the WebFormView or ViewPage.</p>
<p>Surely there's a way to do this? No?</p>
<p>Littlecharva</p>
http://stackoverflow.com/questions/593025/how-to-make-a-structure-map-powered-viewengine-in-asp-net-mvc0How to make a structure map powered viewengine in asp.net mvcAndrew Bullock2009-02-26T23:53:15Z2009-02-26T23:53:15Z
<p>My views extend a base view class ive made:</p>
<pre><code>public class BaseView : ViewPage
</code></pre>
<p>At the moment im calling ObjectFactory.GetInstance inside this class' constructor to get some interface implementations but id like to use structuremap to inject them as constructor arguments.</p>
<p>Im using a structuremapcontrollerfactory to create my controllers, but how can i do the same for views?</p>
<p>I know i can implement a custom ViewEngine, but using reflector to look at the mvc default viewengine and its dependencies, it seems to go on and on and i'd rather not have to re-implement stuff thats already there. Has anyone got a cunning idea how to solve this?</p>
<p>I know i could make things easier with setter instead of constructor injection but id rather avoid that if possible.</p>
http://stackoverflow.com/questions/324473/c-asp-net-how-to-use-the-default-view-engine-standalone4C# ASP.NET - how to use the default view engine standalone ?aktxyz2008-11-27T18:53:28Z2008-11-27T22:39:30Z
<p>I would like to be able to use an ASP.NET view as an email template, complete with the <%= "hi there" %> syntax. Is there a way to invoke/setup this view engine in a standalone way?</p>