I have a Model filed that returns an HTML string with line break BR tag, but How do I display that HTML on the browser ? The problem ins instead putting the line break, the
Try this :
@(new HtmlString(stringWithMarkup))
and you can create a HTML helper too!:
@helper RawText(string s) { @(new HtmlString(s)) }