Is there an Html helper that simply accepts and returns raw html? Rather than do something ugly like this:
<% if (Model.Results.Count > 0) { %>
For MVC2:
<%: MvcHtmlString.Create("Results") %>
Found here:
store and display html tags in MVC