Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 132 down vote accepted

Since ASP.NET MVC 3, you can use:

@Html.Raw(myString)
share|improve this answer
10  
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
3  
I accidently visited my question and fixed it – Idsa Jul 8 '11 at 9:24
@(new HtmlString(myString))
share|improve this answer

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>
share|improve this answer

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

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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