Tagged Questions

137
votes
7answers
25k 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 ...
35
votes
6answers
15k views

ASP.NET MVC Razor view engine

After reading Scott Guthrie's blog entry about the new Razor view engine for ASP.NET MVC and reading this question comparing the available view engines. Razor seems to address most of the problems ...
9
votes
2answers
2k views

What is an ASP.Net MVC View Engine?

There are quite a lot of questions on SO regarding View Engines in ASP.Net MVC, and about using "custom" ones instead of the "default" one. For me as a hobby programmer, the term "View Engine" is new, ...
4
votes
2answers
994 views

ASP.NET MVC View Engine Resolution Sequence

I created a simple ASP.NET MVC version 1.0 application. I have a ProductController which has one action Index. In the view, I created a corresponding Index.aspx under Product subfolder. Then I ...
3
votes
1answer
147 views

Choosing the MVC view engine

I want to allow the end-users of my web application to modify views (via web based back office), stored in the database. The desired view engine is expected to be code-injection safe, meaning that the ...
3
votes
4answers
232 views

What view engines for ASP.NET MVC are people finding better than the default?

It's been a year since this question and I'd like to know now - what view engines are people finding very good and why?
2
votes
1answer
78 views

Erratic requests arising from client when using a custom view engine in ASP.Net MVC

I have spent about 7 hours trying to figure this out but gotten nowhere. This is how my fiddler trace looks like I have two routes that look like below that are registered for this page. [route ...
2
votes
3answers
360 views

How do you write your own View engine for ASP.NET MVC?

I know that ASP.NET MVC will allow me to swap in various View engines that other people have created, but I am wondering how can I create my own View engine? More info: We have our own webforms based ...
1
vote
3answers
386 views

ASP.NET MVC Use Controller or View outside of the MVC application context

Hello i am creating a small webpage that give our users an interface to search in our database. This website must supply 2 webservice functions, Search(string searchString) and ...
1
vote
1answer
99 views

Is it possible to use different view engines for different views in the *same* ASP.NET MVC website?

I'd like to experiment with NHaml. Can I use the NHaml view engine for a few of my views, without having to convert the entire application (or create a new prototype application)?
0
votes
3answers
45 views

Override the Default ViewEngine to Look in Different Directories

I created an area in Visual Studio which automatically adds the appropriate bits in the "Areas" directory. I renamed this to "Modules" but now when i navigate to /{area}/{controller/{action} it still ...
0
votes
1answer
476 views

How do I create a strongly typed view page using ASP.NET MVC VB.NET XML Literals View Engine?

I am using the ASP.NET MVC VB.NET XML Literals View Engine created by Dmitry Robsman and described on his blog in this post. ...