Tagged Questions

Razor is a template language used by ASP.NET Web Pages and ASP.NET MVC (since version 3). It supports seamless transitions between HTML markup and C# or VB code. Transitions between markup and code are indicated by the "@" sign.

learn more… | top users | synonyms (6)

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 ...
132
votes
6answers
23k views

How to import a namespace in Razor View Page?

How to import a namespace in Razor View Page?
75
votes
5answers
19k views

Razor HtmlHelper Extensions Not Found

Dunno if this was happening in the PR or Beta, but if I create an extension method on HtmlHelper, it is not recognized in a Razor powered page: namespace SomeNamespace.Extensions { public static ...
66
votes
3answers
11k views

How to add extra namespaces to Razor pages instead of @using declaration?

Is there some sort of magic I need to use to get the namespaces in the pages/namespaces element in the webconfig? <pages> <namespaces> <add namespace="System.Web.Mvc"/> ...
62
votes
2answers
10k views

ASP.NET MVC 3 - Partial vs Display Template vs Editor Template

So, the title should speak for itself. To create re-usable components in ASP.NET MVC, we have 3 options (could be others i haven't mentioned): Partial View: @Html.Partial(Model.Foo, "SomePartial") ...
62
votes
3answers
7k views

How to use ternary operator in razor (specifically on HTML attributes)?

With the WebForms view engine, I'll commonly use the ternary operator for very simple conditionals, especially within HTML attributes. For example: <a class="<%=User.Identity.IsAuthenticated ? ...
54
votes
2answers
13k views

ASP.NET MVC Razor - output HTML string non escaped

How do I show (safe) HTML saved in DB in a Razor view? It always escapes stuff like <. Thanks in advance
50
votes
1answer
11k views

Correct way to use _viewstart.cshtml and partial Razor views?

I'm using _viewstart.cshtml to automagically assign the same Razor Layout to my views. It's a dead simple file in the root of my Views folder that looks like this: @{ Layout = ...
49
votes
1answer
8k views

ASP.Net MVC 3 Razor: Include js file in Head tag

I'm trying to figure out the proper razor syntax to get a js file for a particular *.cshtml to be in the head tag along with all the other include files that are defined in _Layout.cshtml Thank you, ...
45
votes
2answers
7k views

Does Razor syntax provide a compelling advantage in UI markup?

I notice Scott Guthrie is starting to mention Razor a fair bit on his blog but I'm just not that sure that it's a good fit for my style. Granted it's a fairly unfamiliar style for someone who's ...
38
votes
4answers
5k views

Dynamic Anonymous type in Razor causes RuntimeBinderException

I'm getting the following error: 'object' does not contain a definition for 'RatingName' When you look at the anonymous dynamic type, it clearly does have RatingName. I realize I can do this ...
38
votes
3answers
19k views

ASP.NET MVC 2 to MVC 3: Custom Html Helpers in Razor

I am having difficulty with Html Helpers when used with Razor. Said helpers worked fine in MVC 2 with the web form view engine. But not in razor. The error I get at runtime is: Compiler Error ...
38
votes
2answers
11k views

ASP.NET MVC 3 Razor performance [closed]

Important Update: See update 5 at the bottom there is no performance issue in asp.net mvc 3, this is a benchmark issue I've made a simple hello world project in asp.net mvc2,3 aspx and 3 razor and ...
37
votes
4answers
5k views

Why does Razor _layout.cshtml have a leading underscore in file name?

In the default ASP.NET MVC 3 project, layout & partial cshtml files start with an underscore _viewstart _Layout _LogOnPartial What is this convention mean, and what is used for? Do I need to ...
36
votes
4answers
12k views

Using MVC HtmlHelper extensions from Razor declarative views

I was trying to create a Razor declarative helper in my App_Code folder for an MVC 3 RTM project. The problem I ran into was that the MVC HtmlHelper extensions, like ActionLink, aren't available. ...
36
votes
1answer
21k views

Razor view engine - How can I add Partial Views

I was wondering what, if it is possible, is the best way to render a partial using the new razor view engine. I understand this is something that wasn't finished completely by the time Right now I am ...
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 ...
33
votes
5answers
9k views

asp.net mvc3 razor documentation?

Is there any documentation on how to use Razor view engine using asp.net mvc3? or any other resources? Trying to find it in google and msdn with no luck so far.
29
votes
6answers
14k views

using razor within javascript

is it possible or is there a workaround to use razor syntax within javacript that is in a view?(chtml).. I am trying to add markers to a google map...e.g I tried this but Im getting a ton of ...
29
votes
4answers
4k views

ASP.NET MVC Razor render without encoding

Razor encodes string by default. Is there any special syntax for rendering without encoding?
29
votes
4answers
6k views

Escape @ character in razor view engine

A simple question though. I am creating a sample AP.NET MCV 3 site using Razor as view engine. The razor syntax starts with @ character e.g. @RenderBody(). If I write @test on my cshtml page it gives ...
28
votes
3answers
19k views

Action Image MVC3 Razor

What is the best way to replace links with images using Razor in MVC3. I simply doing this at the moment: <a href="@Url.Action("Edit", new { id=MyId })"><img ...
28
votes
4answers
22k views

Razor/CSHTML - Any Benefit over what we have?

Anyone out there using the new CSHTML pages feature and is finding that they prefer this new view engine syntax over the existing ASP.NET MVC default view engine or over web forms, and if so, why? ...
27
votes
4answers
5k views

Emitting unencoded strings in a Razor view

As ScottGu says in his blog post «by default content emitted using a @ block is automatically HTML encoded to better protect against XSS attack scenarios». My question is: how can you output a ...
25
votes
3answers
41k views

Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables

After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
25
votes
2answers
19k views

ASP.NET MVC Razor: How to render a Razor Partial View's HTML inside the controller action

How to generate a HTML of a given partial view on ASP.NET view engine is known. But if this functionality is used on razor partial view it does not work, as exception says the partial view does not ...
25
votes
3answers
4k views

ContentPlaceHolder in Razor?

I can use ContentPlaceHolder's with Webforms view engines to put stuff in different locations in the master page. How do I do that with Razor? <div id="content"> ...
24
votes
1answer
2k views

how to render a razor view, get the html of a rendered view inside an action

anybody knows how to get the generated html of a view inside an action ? something like this: public ActionResult Do() { var html = RenderView("hello", model); ... }
23
votes
3answers
6k views

MVC Razor dynamic model, 'object' does not contain definition for 'PropertyName'

Using MVC 3 with Razor view engine. I have this View: @model dynamic @{ var products = (List<ListItemBaseModel>)Model.Products; var threshold = (int)(Model.Threshold ?? 1); var id = ...
23
votes
1answer
16k views

MVC 3 file upload and model binding

I have a form upload that works but I would like to pass model information for my database to save the file with a different name of course. Here is my Razor view: @model ...
22
votes
4answers
2k views

Populate a Razor Section From a Partial

My main motivation for trying to do this is to get Javascript that is only required by a partial at the bottom of the page with the rest of the Javascript and not in the middle of the page where the ...
21
votes
4answers
9k views

Razor: Declarative HTML helpers

I'm trying to write a simple declarative html helper: @helper Echo(string input) { @input } The helper works fine if I embed it into the page I want to use it on. But if I move it to a separate ...
20
votes
2answers
14k views

How to get current page URL in MVC 3

I am using the Facebook comments plugin on a blog I am building. It has some FBXML tags that are interpreted by the facebook javascript that is referenced on the page. This all works fine, but I have ...
19
votes
1answer
17k views

Razor If/Else conditional operator syntax

Not having much luck, I have the following if/else statement in Razor which works perfectly <small> @if(deletedView){ @:Deleted } else { @:Created } by </small> I am ...
19
votes
1answer
5k views

Razor: No overload for method 'Write' takes 0 arguments

@{ int i = 4; } @foreach (string s in "1,2,3".Split(',')) { @:s is equal to @s @{ i++; } } I get "No overload for method 'Write' takes 0 arguments" on the @{ i++; } line of code. Any ...
19
votes
3answers
9k views

razor syntax - foreach loop

@foreach (string s in "1,2,3".Split(',')) { s is equal to @s<br/> } I want to spit out: s is equal to 1 s is equal to 2 s is equal to 3 But I'm getting all sorts of errors because Visual ...
19
votes
3answers
5k views

Upgraded to MVC 3: CS0103: The name 'View' does not exist in the current context

I have just updated to ASP.NET MVC 3 RC2. The sample app I am working on now produces the following error, whenever a cshtml view is rendered: CS0103: The name 'View' does not exist in the current ...
19
votes
2answers
8k views

HTML Encoding Strings - Web Forms VS Razor View Engines

I'm not quite sure how this works yet... trying to find documentation. In my existing app I've got two different ways of rendering strings in my View <%: model.something %> <!-- or --> ...
19
votes
4answers
11k views

Enable client validation in Razor views (ASP MVC 3)

I try to add client side validation using this line of code: @Html.EnableClientValidation() But I keep getting this error message: Compiler Error Message: CS1502: The best overloaded method match ...
19
votes
6answers
8k views

How to get IntelliSense for Razor View Engine

Just installed Microsoft Visual Web Developer 2010 and trying to create an MVC application with Razor View Engine. When opened a ".cshtml" file, I am not able to get colors for syntaxes in editor and ...
18
votes
1answer
2k views

Razor syntax inside attributes of html elements (ASP MVC 3)

I have a table with repeating customer rows, I would like to add the customer ID to the ID attribute of my table rows like this: <tr id="row<customer id>"></tr> I try adding this ...
18
votes
4answers
5k views

Is Razor view with ASPX .Master page possible?

Is it possible to keep my existing .master page and have it used with a new ASP.NET MVC 3 Razor view? I tried this: @{ LayoutPage = "~/Views/Shared/Site.master"; } And it gives me this error ...
17
votes
1answer
5k views

Perform client side validation for custom attribute

I have created a Custom Validation Attribute: public class FutureDateAttribute : ValidationAttribute { public override bool IsValid(object value) { if (value == ...
17
votes
2answers
2k views

How Can I Have View-Specific <head> contents Using Asp.Net MVC 3 and Razor?

I want to link a specific style sheet in certain Views in addition to what already gets linked in _Layout.cshtml. For non-Razor, I see using the content place holder. How would I do this for Razor?
17
votes
2answers
12k views

ASP.NET MVC 3 Razor Templates VS RenderPartial

I just read this blog post on Razor Templating in ASP.NET MVC 3. Put simply, i just dont get it! That is, i don't see why we need this (fairly) complicated code to achieve what can be done IMO ...
16
votes
2answers
3k views

ASP.NET MVC3 Razor Concatenation

I'm trying the render an HTML list that looks like the following, using the Razor view engine: <ul> <li id="item_1">Item 1</li> <li id="item_2">Item 2</li> ...
16
votes
3answers
5k views

Razor: @Html.Partial() vs @RenderPage()

What is the appropriate way of rendering a child template? And what's the difference? Both seem to work for me. And why does @Html.RenderPartial() no longer work?
16
votes
5answers
2k views

Does the Razor View Engine work for Mono?

I tried searching a bit and didn't find an answer. Does the Razor View Engine work in Mono?
16
votes
3answers
4k views

Need razor view engine auto-complete to work in a class library?

We have a modular architecture where we have some views (cshtml) files in a separate project (class library). How can we get the syntax highlighting and autocomplete to work when the project isn't an ...
16
votes
2answers
3k views

Razor View Engine : An expression tree may not contain a dynamic operation

I have a model similar to this: public class SampleModel { public Product Product { get; set; } } And in my controller I get an exception trying to print out @Html.TextBoxFor(p => ...

1 2 3 4 5 63