HTMLTextWriter删除C#中的超链接和格式

时间:2014-08-19 07:30:01

标签: c# asp.net htmltextwriter

我的一些字段作为超链接导出,我希望它格式化为标准字体并删除超链接。我如何在C#中做到这一点?

1 个答案:

答案 0 :(得分:0)

我使用正则表达式删除了将其排序的列后面的javascript。

string html2 = Regex.Replace(sw.ToString(), @"(<input type=""javascript""\/?[^>]+>)", @"", RegexOptions.IgnoreCase);
html2 = Regex.Replace(html2, @"(<a \/?[^>]+>)", @"", RegexOptions.IgnoreCase);
Response.Write(html2.ToString());