public static string DeleteHTML(string Htmlstring)//将字符串中的HTML标签包含的内容移除
{
#region
//删除js脚本
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
//删除HTML标签
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"]*)>", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"([\r\n])[\s]+", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"-->", "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
Htmlstring = System.Text.RegularExpressions.Regex.Replace(Htmlstring, @"