Tagged Questions

11
votes
2answers
619 views

ASP.NET MVC View Engine Comparison

EDIT: added a community wiki 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 a …
11
votes
3answers
333 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? …
5
votes
5answers
126 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
3answers
246 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
3answers
103 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 …
3
votes
3answers
688 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?
2
votes
1answer
52 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 …
1
vote
1answer
79 views

ASP.NET MVC Custom View Engine Not Being Called.

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 this blog post. I have inherited from the …
1
vote
1answer
63 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 …
1
vote
2answers
48 views

What is the most usual way to develop views in asp.net mvc?

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 …
1
vote
3answers
440 views

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

Hello, 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 …
1
vote
2answers
443 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 WebFromViewEngine …
1
vote
1answer
54 views

Find the atrributes on an action from the ViewEngine in ASP.NET MVC

I've got a custom ViewEngine and I want to modify the master page used depending on if the requested action has an Authorize attribute filter. So far I'm just using reflection like this: var method …
1
vote
1answer
186 views

MasterLocationFormats in WebFormViewEngine not used?

I tried to make the ViewEngine use an additional path using: base.MasterLocationFormats = new string[] { "~/Views/AddedMaster.Master" }; in the constructor of the ViewEngine. It works well for …
1
vote
1answer
208 views

Implement ASP.NET MVC View Engine for pre-processing

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 …

1 2 next
15 30 50 per page