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
In MVC4
Instead of using @Html.Raw(modelItem => item.Speaking)
@Html.Raw(modelItem => item.Speaking)
You can use @Html.Raw(@Model.Speaking.ToString())
@Html.Raw(@Model.Speaking.ToString())
It works for me and I hope this help someone else too