Razor encodes string by default. Is there any special syntax for rendering without encoding?

link|improve this question

feedback

4 Answers

up vote 80 down vote accepted

In ASP.NET MVC3, you can use:

@Html.Raw(myString)
link|improve this answer
9  
This should be made the answer. – stimpy77 Feb 7 '11 at 0:41
i agree, much better – scripni Feb 22 '11 at 14:11
Can someone (a moderator maybe) please make this the answer? – David McLean Jun 29 '11 at 9:16
1  
I accidently visited my question and fixed it – Idsa Jul 8 '11 at 9:24
feedback
@(new HtmlString(myString))
link|improve this answer
feedback

As well as the already mentioned @Html.Raw(string) approach, if you output an MvcHtmlString it will not be encoded. This can be useful when adding your own extensions to the HtmlHelper, or when returning a value from your view model that you know may contain html.

For example, if your view model was:

public class SampleViewModel
{
  public string SampleString { get; set; }
  public MvcHtmlString SampleHtmlString { get; set; }
}

then

<!-- this will be encoded -->
<div>@Model.SampleString</div>
<!-- this will not be encoded -->
<div>@Html.Raw(Model.SampleString)</div>
<!-- this will not be encoded either -->
<div>@Model.SampleHtmlString</div>
link|improve this answer
feedback

The MvcHtmlString class also offers a static method to create html strings:

<div>@MvcHtmlString.Create("<h1>HTML</h1>")</div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.