The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
99 views

ASP.Net MVC ActionMailer and custom view engine

I am using a custom view engine in my ASP.Net MVC project to help me deal with multiple sites (mutli-tenancy application) sharing the same code base. I have a base controller from which all my other ...
1
vote
2answers
479 views

ASP.NET MVC: Multiple View Folders and _ViewStart.cshtml file

I have an MVC project that requires there to be 2 different View folders. One is at ~/Views/ and one at ~/Framework/Views/. This is done by creating a custom view engine based on the razor view engine ...
1
vote
1answer
63 views

How can I get Advanced Url Routing parametres?

It works now like localhost/Controller/Action but I want it like localhost/MainFolder/SubFolder/Controller/Action because I need to get my MainFolder and SubFolder name; like RouteData routeData = ...
3
votes
2answers
129 views

What techniques are used to write a parser that switches between languages?

I'm interested in how a parser like the Razor view engine can parse two distinct languages like C# and JavaScript. It's very cool that the following works, for instance: ...
2
votes
1answer
192 views

Is there any way to use multiple view engines with Express + Node.js

Scenario: I had developed some transactional pages using Node.js, Express + Handlebars as view engine and MongoDB. Now the issue is during module integration I got some of the pages which are built ...
0
votes
0answers
305 views

Razor View vs Aspx [closed]

Update: Just found out that this question has already been answered here: ASP.NET MVC View Engine Comparison I have looked at follwoings: MVC 3 ASPX VS RAZOR View Engine Iteration in Razor vs ASPX ...
0
votes
0answers
28 views

Custom ViewEngine, but still be able to use HtmlHelper editables?

If I have understod this right.. the razor view engine is specified to only allow HtmlHelper editables for the default paths.. but what if I change or extend the paths for where the engine should look ...
0
votes
1answer
136 views

MVC Custom RazorViewEngine initialization not working

I created a custom Razor View engine Right now when I do: public class ConfigViewEngine : RazorViewEngine { public ConfigViewEngine() { var existingViewLocationFormats = new ...
6
votes
4answers
2k views

Partials with Node.js + Express + Hogan.js

I'm developing a site with Node.js + Express and using as view engine Hogan.js. This is my file app.js: /** * Module dependencies. */ var express = require('express') , routes = ...
0
votes
1answer
176 views

Process _Layout.cshtml rendering in ViewEngine override

I have my own implementation of Razor view engine that allows me to process partial views and views "feeding" so that I serve a localized versions of my views to the client. I use protected override ...
0
votes
2answers
493 views

Route images in View folder in Asp.Net MVC 3

I tried asking this question a bit differently before, but it wasn't understood, so I'll try another way: I have an MVC 3 application where I have views in the Views directory as usual. However, for ...
1
vote
1answer
119 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 ...
0
votes
3answers
130 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 ...
4
votes
2answers
631 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
465 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
2k 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 ...
7
votes
2answers
1k 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
87 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 ...
1
vote
1answer
540 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
758 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 ...
38
votes
6answers
17k 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 ...
3
votes
1answer
200 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 ...
1
vote
1answer
118 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)?
8
votes
2answers
2k 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
4answers
261 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
939 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 ...
187
votes
7answers
46k views

ASP.NET MVC View Engine Comparison [closed]

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. ...
12
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, ...
0
votes
1answer
591 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. ...
3
votes
3answers
450 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 ...
4
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: ...