Tagged Questions
The view-engine tag has no wiki summary.
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 ...
35
votes
6answers
14k 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
1k 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
963 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
2answers
387 views
View Engines for Web Matrix Web Pages
Microsoft has a new website editing tool: WebMatrix. WebMatrix uses the new Web Pages engine in which Razor is the view engine; Razor is also the new view engine for MVC3. I am attempting to find out ...
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
1answer
145 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
226 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?
3
votes
6answers
2k views
Is there an ASP.Net MVC view engine that supports JavaScript views?
I would like to generate some JavaScript on the server side in ASP.Net MVC. Is there a view engine that supports this? Ideally I would like to be able to get JavaScript from an url like:
...
2
votes
1answer
1k views
ASP.NET MVC3 Razor - lost intellisense when placing view in alternate location?
VS2010 Ultimate, ASP.NET MVC 3 w/Razor.
I've created a custom view engine in my MVC3 app that allows nested areas, like so
~/areas/admin
/marketing
/views
index
...
2
votes
2answers
420 views
Why do we use HTML helper in ASP.NET MVC?
Are there any good thing, best practice or profit we have after using the HTML helper in an ASP.NET MVC project?
When I am trying to use them I found that I lose the speed I have with HTML and many ...
2
votes
1answer
77 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
1answer
519 views
ASP.NET MVC view engine performance
I'm developing high load solution with final version of asp.net mvc.
Recently our team noticed, that most of the time that takes a server to response to client is devoted to page rendering. Simple ...
2
votes
3answers
357 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
1answer
24 views
Can I interleave two MVC view engines when searching for views?
I'm using the WebForms and Razor view engines in my MVC project. They work just fine together. However, I have an inheritance-based project set up, such that I have multiple child projects derived ...
1
vote
1answer
386 views
ASP.NET MVC 2 Custom view engine
Im developing a custom view engine for implementing themes for my asp.net mvc 2 web app. The problem that I am facing is that in this function:
public override ViewEngineResult ...
1
vote
3answers
371 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
97 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
37 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
472 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.
...