Is there an Html helper that simply accepts and returns raw html? Rather than do something ugly like this:
<% if (Model.Results.Count > 0) { %><h2>Results</h2><% } %>
I'd like to do something like this:
<% if (Model.Results.Count > 0) { Html.RawHtml("<h2>Results</h2>") } %>
Not a whole lot cleaner, but I think it's a bit of an improvement. Does something like that exist? Or is there perhaps a better alternative to output raw html from within those escape characters than using Html helpers?