你搜索一下c#过滤html代码, 可多啦
http://www.cnblogs.com/floatping/archive/2007/06/13/782368.html
给个参考
一、String content="<a>test</a>";
String newContent=content.replaceAll("<[^>]*>","");
注:最后结果为“test”
二、
网页提交数据过滤script iframe 正则表达式:
</?script[^>]*>|</?iframe[^>]*>