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

Is HTML.raw() specific to MVC? On what scenarios we have to use it?

Can you please explain with an example.

share|improve this question

3 Answers

HtmlHelper.Raw MSDN

Wraps HTML markup in an HtmlString instance so that it is interpreted as HTML markup.

share|improve this answer

Text output will generally be HTML encoded. Using Html.Raw allows you to output text containing html elements to the client, and have them still be rendered as such. Should be used with caution, as it exposes you to cross site scripting vulnerabilities.

share|improve this answer

Yes, it is specific to MVC.

It writes unencoded HTML to your page. Most other methods HTML-encode a string when you write it to the page.

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.