I’ve got unformatted html in a string.
I am trying to format it nicely and output the formatted html back into a string. I’ve been trying to use The System.Web.UI.HtmlTextWriter to no avail:
System.IO.StringWriter wString = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter wHtml = new System.Web.UI.HtmlTextWriter(wString); wHtml.Write(sMyUnformattedHtml); string sMyFormattedHtml = wString.ToString();
All I get is the unformatted html, is it possible to achieve what I’m trying to do here?
Here’s a function that does exactly that: