I\'m using the following to make the text output the line breaks entered in a HTML element.
MvcHtmlString.Create(Model.Post.Des
There's an even better/awesome solution that employs CSS white-space property:
Using this you avoid Cross-site scripting (XSS) vulnerabilities...
@Model.Message
Works like a charm with ASP.NET MVC Razor engine.