The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
230 views

Handling Layout properties with custom Razor view engine

I have implemented a multi-tenant view engine similar to what is described here: http://weblogs.asp.net/imranbaloch/archive/2011/06/27/view-engine-with-dynamic-view-location.aspx Which let me ...
0
votes
2answers
53 views

node.js jshtml-express layout

Hello! Is there any way to have the master page or layout in jshtml? I tried do this in .net Razor style, but it did't works. Link to jshtml view engine. My intention is to have mastarpage lets say ...
0
votes
1answer
76 views

Is it worth migrating an existing asp.net-mvc project with webform view engine to razor?

I have a large asp.net-mvc web site . I recently upgraded to MVC 4 but one thing i am debating is it worth it to migrate to razor engine. I see there are tools to "auto" upgrade but i am trying to ...
3
votes
1answer
89 views

Shared layouts not found with overridden View paths (Location Formats) in ASP.NET MVC

I'm grouping my Views, Controllers and models. The structure is ~/Controllers -- /_Shared -- -- /Views -- -- /Content -- -- /Scripts -- /Home -- -- /Models -- -- /Content -- -- /Scripts -- -- ...
1
vote
2answers
177 views

Choice of View Engines in MVC4?

I am developing a mobile application using ASP.Net MVC4.0, JQuery Mobile, HTML5. As I am new to ASP.Net MVC, I am not sure whether to use Razor(.cshtml) or webForm(.aspx) view engine. Can anyone ...
1
vote
2answers
473 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 ...
0
votes
1answer
133 views

Failover to an alternate View when Partial View is not found?

I have an MVC app that uses dynamic business objects that are inherited from a parent object type. For example the base class Client might have two sub classes called Vendor and ServiceProvider, and ...
1
vote
0answers
238 views

Master page magically changes in ASP.NET MVC Custom View Engine

OK I have inherited this code with a custom view engine. All it does is overriding FindView in order to return different views based on the device. Currently, iPad is detected as a mobile device and ...
0
votes
0answers
80 views

return View(model) finds the view but passes a null model

I am moving the views of an old project from ASPX to Razor, I have almost finished with it without any major issues, but I have come to this kind of problem with some strongly typed views. The thing ...
3
votes
1answer
66 views

_ViewStart not used after Custom ViewEngine

Does anyone know if there is a reason why _ViewStart.cshtml wouldn't get picked up with a Custom ViewEngine in MVC 3? My Views now live at ~\UI\Views\ ~\UI\Views\Shared\ with ViewStart being at ...
0
votes
0answers
116 views

Dynamic IOC MVC ViewEngine

I'm trying to load a particular view engine in a multi-tenant environment where each tenant has their down view engine (as instance of PreCompiledViewEngine). I'm using Autofac and its multi-tenant ...
0
votes
1answer
34 views

when does ReleaseView get's called?

I'm just a newbie to MVC. I've started reading Professional ASP.NET MVC3 by Jon Galloway, Phil Haack, Brad Wilson, Scott Allen I've seen a method named as `ReleaseView, when trying learning on how ...
0
votes
1answer
199 views

MVC4 Create Webform View that is not inheriting from Master Page

I have an application that is using MVC4 using webform views. I am overriding the FindView of the WebFormViewEngine to find the view when the controller actions returns View() like so: public ...
0
votes
2answers
61 views

View engines for non-mvc web application

I'd like to achieve the MVC View Engine behavior in an web forms application. To register a mobile channel in MVC I normally would do something like this public static List<string> UaSurfpads ...
0
votes
0answers
31 views

What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document?

What resources besides the available source code provide a Razor ViewEngine grammar or similar descriptive document? Specifically, I want to study how the fundamentals of the view engine are derived ...
0
votes
0answers
373 views

ASP.NET MVC 4 Areas within Areas won't render the Shared _Layout.vbhtml from Master project

Ok so I have this interesting ASP.NET MVC 4 solution/project structure, which creates pluggable application modules. I created it following this technique: ...
4
votes
1answer
403 views

Extending Razor View Engine to Handle Rendering

I wonder if there is any way to extend razor view engine capabilities to handle some custom text/tag and parse/proceed before render. Assume that I use some special tag which is ${} as below: ...
0
votes
2answers
175 views

Nancy Razor Viewengine not found

I'm using Nancy 0.14.1.0 with a Razor view. Things are going fine as long as I work with the internal webserver in VS 2010. Now I did deploy the stuff to my webserver running IIS 6. The route is ...
0
votes
1answer
457 views

MVC4 extra folders under View

Im currently implementing MVC into a fairly large project and want to sort views into categories. MVC dont seem to understand this and Im having problems finding a clean solution. Basically I was ...
0
votes
1answer
66 views

Localized ViewEngines using multiple routes

I am trying to make a simple multi-language website. Overrinding FindView to get the file based on the language is easy, my problem comes in the routing part. I would like to do is: (have a website ...
1
vote
1answer
984 views

Razor Generator: how to use view compiled in a library as the partial view for master defined in main mvc project

We have an ASP.NET MVC 4 application with around 3000 views in it. We've decided to split this set of views into separated DLLs and compile it with RazorGenerator. We keep only main _Layout.cshtml and ...
1
vote
1answer
246 views

View engine can't find my view

I am getting the following error when trying to return a ViewResult from a post action: The view 'Index' or its master was not found or no view engine supports the searched locations. The ...
0
votes
1answer
2k views

The view 'Home' or its master was not found or no view engine supports the searched locations. The following locations were searched: 'sporadic error'

I am getting sporadic errors when working with my MVC 4 application when trying to return a View. In this particular case, I am about to return a View return View("Home", model); and that's where I ...
1
vote
0answers
121 views

How to use Underscore.js as View Engine for Express v3

There is a question on here answering for v2, but the v3 ExpressJS api is quite different, and uses a totally different layout system. Does anyone have any experience using Underscore.js (if needed ...
3
votes
2answers
1k views

displaymode for mobile with desktop view for ipad in asp.net mvc 4

Hi I have a MVC 3 application, recently converted to mvc 4 and added mobile views. I want to add displaymodes for Mobile with desktop view for tablets specially for iPad(traffic mainly from here). I ...
0
votes
0answers
111 views

dotnet view engine/template engine with method support?

I need a viewengine/template engine that i plan to use with NancyFx that allows method calls with parameters and to then foreach over results etc if needed. I have looked at RazerEngine which seemed ...
0
votes
2answers
146 views

Change default view folder for custom Http404 error page

I want to custom error pages in my asp.net mvc3 website. So, I found this very useful post: Custom error pages on asp.net MVC3 and it works well However, my Http404.cshtml file isn't in the Views ...
0
votes
0answers
148 views

The controller name in a custom partial views location with mvc3

I followed this tutorial to customize my partial views locations. http://www.leonamarant.com/2011/02/17/adding-a-custom-directory-to-razor-view-engine-partial-view-locations-in-asp-net-mvc3/ ...
-1
votes
1answer
121 views

What is the best ASP.NET MVC View Engine? [closed]

Till ASP.NET MVC 3, Microsoft uses ASP.NET View Engine for MVC. henceforth they changed it to Razor. Yet, there are many other view engines such as: Spark NHaml SharpDOM SharpTiles Wing Beats ...
2
votes
2answers
544 views

Dynamic layout for mobile visitors on ASP.NET MVC 3?

I want to dynamically change the layout, based on whether the user is accessing the site from a mobile device or not. I have a few questions on the subject. I would like to change the layout once ...
0
votes
2answers
492 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 ...
0
votes
1answer
162 views

How to implement “cascading” ViewEngineResults?

I am in the process of adding a mobile extension to the view names when it is detected. Here is the current code: public override ViewEngineResult FindView(ControllerContext controllerContext, ...
0
votes
1answer
122 views

Javascript-emitting template engine for node.js?

Consider e.g. the following scenario: we give some entry point URL (something like https://our.server/customer-name/entry-point.js) to our customer, so that they're able to include our product on ...
1
vote
1answer
153 views

Using area display template from root project?

I have an area in my mvc project and this area has some display templates. If I use @Html.DisplayFor(x => Model.Image) I want to use the display template from my are for the Image. How can I ...
1
vote
0answers
443 views

Overriding view location for Razor View Engine

I prefer to work with one class per controller action in my MVC apps, however I'd to be able to structure my view folder with one folder per "controller". I use routes like /Admin/Login which maps ...
0
votes
1answer
241 views

How to get action of form using jquery?

I have form in my page, I am using ajax.beginform(). Inside this form I have submit button. On submit of input button I want action of form. Following is the piece of code which may be useful for you ...
4
votes
4answers
609 views

C++ Web Framework w/ Embedded Server?

I have been looking for a C++ Web Framework that would allow me to build a GUI Control Panel directly into a .dll plugin. In the past I have used Nancy Framework for .NET Projects which was ...
0
votes
2answers
165 views

Pointing all actions without specified view to one concrete view

I am creating advanced site that is based in 99% on one view. I have created the following code which is responsible to point all controllers actions which dont have corresponding view to universal ...
5
votes
2answers
277 views

Nustache View Engine ArrayTypeMismatchException

Trying to use Nustache to share client and server mustache templates, but Nustache is just not playing nicely with my app. I used the code straight out of their MVC application example in the source ...
0
votes
1answer
329 views

Java HTML View Engine with Master Templates and Sub Views

I'm desperately looking for a Java HTML view engine that fulfills three main requirements: Support for master template pages. HTML templates can be used as subviews within other templates. HTML ...
2
votes
2answers
757 views

How do I detect a touch screen mobile device using 51degrees.mobi

I am using the MobileViewEngines describe here by Scott Hanselman, and the 51Degrees.mobi browser database to render different views for mobile and desktop browsers. I now want to add a middle ...
9
votes
3answers
4k views

What is view engine? What does it actually do?

I started learning ASP.NET MVC3. So while reading tutorials online and in books, I came across this term "view engine" quite frequently. I don't know what it is, and what does it actually do? Why ...
0
votes
2answers
412 views

How can i use jquery name syntax with a razor view engine?

I have a webpage that i am converting to razor view engine. I have this code, which is failing now: if ($("input[@name='exerciseRB']:checked").val() == 'New') { $("#newExercise").show(); ...
1
vote
2answers
118 views

How to default your asp.net-mvc site to look for razor views first?

I am converting all of my views over to razor so I have created all new view files but I haven't deleted the aspx file (I just have them excluded from the project). When i go to test my site, it ...
2
votes
2answers
654 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? ...
0
votes
1answer
144 views

Using distinct views for distinct devices ASP.NET MVC

I need to use distinct version of views, for each device. For example: Controller/Action: Home/Index PC - Home.cshtml, Android - Home.Android.cshtml, iPad - Home.iPad.cshtml These pages contains ...
1
vote
2answers
152 views

InRequestScope provider (for custom ViewEngine) only called once at appstart

I want to inject a custom ViewEngine into my MVC website. This is what I do: private static IKernel CreateKernel() { kernel.Bind<IViewEngine>().ToProvider(new ...
0
votes
2answers
384 views

.Net MVC 4 View Engine WebForm

This is a quite interesting question, in my opinion. I have a strongly typed view using the WebForm view Engine, I don't know if changing to razor would solve my problem. PROBLEM: I have one view ...
3
votes
1answer
647 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 ...
1
vote
1answer
140 views

Tehnology for generating xml similar to a razor or any other view engine

I am currently making a website that returns quite a few xml types and some of them are quite big. I don't really need to resort to xml serialization because it would be a bit slow in my case and some ...

1 2 3