Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

135
votes
7answers
24k views

ASP.NET MVC View Engine Comparison

EDIT: added a community wiki answer to begin capturing people's experience with various View Engines. Please respectfully add any experiences you've had. I've been searching on SO & Google for ...
22
votes
9answers
5k views

Can you recommend a .net template engine?

I am looking for a .net templating engine - something simple, lightweight, stable with not too many dependencies. All I need it for at the moment is creating templated plain text and html emails. ...
19
votes
2answers
8k views

HTML Encoding Strings - Web Forms VS Razor View Engines

I'm not quite sure how this works yet... trying to find documentation. In my existing app I've got two different ways of rendering strings in my View <%: model.something %> <!-- or --> ...
12
votes
2answers
3k views

Razor Nested Layouts with Cascading Sections

I have an MVC3 site using Razor as its view engine. I want my site to be skinnable. Most of the possible skins are similar enough that they can derive from a shared master layout. Therefore, I am ...
12
votes
4answers
653 views

What are the benefits of using an alternate ASP.NET MVC view engine?

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? ...
8
votes
3answers
1k views

Unit testing MVC3 Razor helpers/views without strings

I am trying out the MVC3 Razor view engine, and one the features that I am exploring is the ability to unit test views. I have seen a number of examples where Razor views can be compiled into an ...
8
votes
6answers
3k views

How to concisely create optional HTML attributes with razor view engine?

I'm looking for a way to write the following code with less lines of code (maybe 5). I suppose I could do the same thing as the selected class but this razor syntax isn't looking pretty. <ul> ...
7
votes
4answers
4k views

installing the razor view engine for Visual Studio

I just downloaded and installed Web Matrix beta. I am really liking the razor view engine. Not so much the Web Matrix IDE. Is there any way to install razor view engine for use in the Visual Studio ...
7
votes
2answers
368 views

Mixing spark and webform view engines

Is it possible to use multiple view engines? I have a large(ish) site that is already using the webforms view engine, but we would like to move to spark for new features. Is this supported? any ...
6
votes
2answers
2k views

What are few advantages of Razor view engine over other view engines

I want to know what are few advantages of Razor view engine other then its syntax over other view engines like Spark, NHaml or default aspx view engine. Also what is the performance difference between ...
6
votes
3answers
5k views

How to change default view location scheme in ASP.NET MVC?

I want to change view locations at runtime based on current UI culture. How can I achieve this with default Web Form view engine? Basically I want to know how implement with WebFormViewEngine ...
6
votes
4answers
2k views

alternative asp.net MVC view engines

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?
5
votes
2answers
372 views

How to write a Visual Studio extension for a template or markup language that supports embedded code snippets

Is it possible to write an extension for Visual Studio 2010 that provides syntax highlighting, intellisense, outlining, etc for a custom template or markup language supporting embedded code snippets, ...
5
votes
3answers
7k views

Razor vs Webforms view engine for new ASP.NET MVC 3 site

Razor is prettier (and is new therefore cool). Webforms is something I am already familiar with. Naturally I would unquestionably go for the new thing to learn - Razor. But I have heard of two ...
5
votes
2answers
503 views

Is there a way to make a @section optional with the asp.net mvc Razor ViewEngine?

I have a Page.cshtml similar to the following (that does not work): @{ Layout = "../Shared/Layouts/_Layout.cshtml"; var mycollection = (ViewBag.TheCollection as ...
5
votes
6answers
542 views

Creating ASP.NET MVC style views in a console application?

I have a console application that requires me to send out e-mails. Right now I use a string builder to create the e-mails, but I'd like to get more fancy. Then it dawned on me: it would be nice to ...
5
votes
4answers
919 views

Use ASP.NET MVC as Email Template Engine: Good Idea?

Would it be a good idea, and executable, to use the ASP.NET MVC View Engine to render html to be sent out by email? I know it's possible to let the view render into a string. So that could be use to ...
5
votes
5answers
410 views

What are the benefits of using an alternate view engine?

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 why would you use an alternate view engine? I don't see a ...
4
votes
1answer
305 views

Using Spark or Razor viewengine with OpenRasta

has anyone used Spark or Razor view engine with OpenRasta framework? or any suggestion on the view engine other than the build in WebForms ?
4
votes
2answers
398 views

MVC Razor ViewEngine not thread-safe?

I currently have a .net mvc3 application that is responsible for managing similar views in multiple locations that also use the same controllers e.g site1/v1/views/index.cshtml and ...
4
votes
4answers
424 views

Is it possible with ASP.NET MVC to render a view from a template pulled from a database?

What I'm trying to do is generate email content using different templates. I think ASP.NET MVC could be a good fit for this. My controller would get the necessary data for the email and decide ...
4
votes
3answers
545 views

C# ASP.NET - how to use the default view engine standalone?

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?
3
votes
0answers
98 views

.NET MVC Custom viewengine layout

In a custom viewengine in the FindView method, how can I see the Layout used? masterName is always empty. ViewEngineResult FindView(ControllerContext controllerContext, string viewName, string ...
3
votes
1answer
171 views

Default Content for Section in Razor

I want to have some default content for a section let suppose Footer. How can I do this. Also, what if I want to render a partial view as the default content. Thanks
3
votes
3answers
975 views

How to make razor the default view engine in existing project

I upgraded an MVC 2 project to MVC 3. How can I set the default view engine to Razor on an existing project? Edit: Sorry, I was rather unclear. I want to have Razor be the default type in the Add ...
3
votes
2answers
249 views

ASP.NET Web Form Render Engine outputs a Control Tree? Looking for info on render logic

I've been watching a video on Scott Hanselmnn teaching MVC 2 tricks/tips. He mentions how MVC 2 by default uses ASP.NET Web Forms view engine to render the output of the views; he mentions that the ...
3
votes
5answers
2k views

How to Download Razor View Engine

I want to download and install razor view engine for ASP.Net MVC 2. From where i can download and install?
3
votes
2answers
2k views

Spark VS 2010 intellisense

I was thinking about switching one of my projects (and after that subsequently other projects too) to Spark View Engine but after todays research I ran into problem of a lack of Intellisense for ...
3
votes
3answers
193 views

Which View Engine are you using with ASP.NET MVC?, and Why?

I'm thinking of experimenting with alternative View Engines for ASP.NET MVC, and would like to know what other people are using. Please let me know 1) Which View Engine you use, and 2) Why. The ...
3
votes
1answer
391 views

Has anyone been able or at least tried to port Liquid Template Language to C#?

I need to give end-users the ability to securely edit an asp.net mvc web application templates and so far Liquid Template Language seems to be perfect, but it is written in Ruby and porting it seems a ...
3
votes
1answer
387 views

How to use MVC Action Results from regular web forms (faking ControllerContext)?

We have a pluggable framework that returns ActionResult 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 ...
3
votes
1answer
304 views

How to group partial shared views for specified controllers?

Is it possible to tell ViewEngine to look for partial shared views in additional folders for specified controllers (while NOT for others)? I'm using WebFormViewEngine. This is how my ...
2
votes
2answers
63 views

How does MVC3 picks which ViewEngine to use if I have multiple engines in ViewEngines collection?

I have a custom view engine developed internally. In the same project, I would like to use Razor for some pages and my custom engine for some pages. How does MVC framework choose which engine to use? ...
2
votes
1answer
216 views

How do I use handlebar.js templates as rails view engine?

I'd like to add handlebar.js as a view engine in my rails app. I'm trying to share the same templates for both the server and client. I've found a few gem's already (handlebar_assets and ...
2
votes
1answer
113 views

In asp.net mvc, how do I switch the masterpage from the view?

I have been reading this link from Steven Sanderson about mobile web development http://www.asp.net/learn/whitepapers/add-mobile-pages-to-your-aspnet-web-forms-mvc-application, and I am trying to ...
2
votes
5answers
458 views

HTML Email created with ASP.NET MVC 2 View (standard view engine)

Is there a way to email an ASP.NET View using the standard view engine (not spark)?
2
votes
2answers
309 views

Inject selected view path as HTML comment to start and end of action's output

I'm currently putting together a multi-tenancy web app using MVC 3. At least 30 different Web sites will share a common codebase, and while also sharing similar under-the-hood functionality, they are ...
2
votes
2answers
285 views

ASP.NET MVC2 Custom View Engine ignored in unit tests

I'm trying to unit test a controller that stuffs data into a ViewData. All our views require similar data (Customer info which is derived from the url). So instead of putting the call into every ...
2
votes
3answers
162 views

Would you like ASP.NET MVC view engine in which a view is created entirely in Code?

Recently I created a spike of a view engine, in which views are plain classes, and the content is created by using funny using-scope blocks. The code together with a simple sample site is available ...
2
votes
2answers
60 views

Running ASP / ASP.NET markup outside of a web application (perhaps with MVC)

Is there a way to include some aspx/ascx markup in a DLL and use that to generate text dynamically? I really just want to pass a model instance to a view and get the produced html as a string. ...
2
votes
3answers
2k views

ASP.NET (MVC) - render page to a file

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 ...
1
vote
1answer
175 views

Is there a jade template engine for ASP.NET MVC?

I've always been searching for a best suitable ViewEngine for me in ASP.NET MVC, and after observing a ton of template engines in either JAVA, PHP, Python, Ruby, NodeJS... I found the jade template ...
1
vote
1answer
684 views

Example of Node.js Express registering Underscore.js as view engine?

Underscore.js does not have a compile function like ejs and jade, but does work as a Node.js module. Would someone please provide an example of how to make it work inside an Express app?
1
vote
1answer
130 views

Razor: Loading external layout files (cshtml)

I've been trying for days (really, days) to use "external" files (provided from a different server using an ashx handler) as layouts in Razor. @{ Layout = ...
1
vote
1answer
122 views

Trying to use FindView with a path

I'm trying to check if a couple of views exist by using paths. But the views cannot be found even if they do exist. private string SelectFirstView(ControllerContext ctx, params string[] viewNames) { ...
1
vote
1answer
461 views

Controlling Razor views programmatically?

Is is possible to programmatically control Razor views? Can I reach the different RenderSection parts or change the Layout definition in code? I'm looking into possibilities to use Razor syntax in ...
1
vote
2answers
549 views

.NET MVC3 - Add custom viewengine to New project dialog?

When creating a new project for MVC3 I have an option to select a custom viewengine. I can choose between Razor and ASPX. Is there a way to add Spark to the dropdownlist?
1
vote
1answer
548 views

How do you declare a comment using the Razor view engine?

Using ASP.NET MVC's default view engine, you can declare a server-side comment like this: <%-- This is a comment --%> This comment will only be visible on the server side and is not sent to ...
1
vote
4answers
182 views

How would I tell a browser to render a string, not display it

I have this extension method I created and it returns a string of all the categories in my database as hyperlinks. Great! @Html.MyMenu() The problem is that the links are being displayed as text ...
1
vote
2answers
214 views

Fluent control writing like Telerik : Understanding the angle brackets translation

Here is a piece of class : public class OneControl { ... public OneControl Content(Action value) { ContentProperty = value; return this; } public void Render() { ...

1 2 3