Output from controller below is rendered without line breaks in IE9 How to force browser to render text in separate lines as created ?
ASP.NET / Mono MVC2 is used in .NET 3.5
public ActionResult Index()
{
var sb = new StringBuilder();
sb.AppendLine("Line1");
sb.AppendLine("Line2");
return new ContentResult() { Content = sb.ToString() };
}