我有一個字符串中未格式化的html。如何以編程方式格式化字符串的一個字符串
我想很好地格式化並將格式化的HTML輸出回字符串。 我一直在試圖使用System.Web.UI.HtmlTextWriter無濟於事:
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();
我得到的是未格式化的HTML,是有可能實現什麼,我想在這裏做什麼?
什麼是格式化的HTML字符串?例子會有所幫助。 – shahkalpesh 2009-01-09 04:39:09