public string StripHT(string strHtml) { Regex regex = new Regex("<.+?>", RegexOptions.IgnoreCase); string strOutput = regex.Replace(strHtml, ""); return strOutput;
}