转一个吧:
public string wipeScript(string html)
{
System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"<script[\s\S]+</script *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex2 = new System.Text.RegularExpressions.Regex(@" href\s*=.*javascript[^>\s]*", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex3 = new System.Text.RegularExpressions.Regex(@" on\w+=", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex4 = new System.Text.RegularExpressions.Regex(@"<iframe[\s\S]+</iframe *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex5 = new System.Text.RegularExpressions.Regex(@"<frameset[\s\S]+</frameset *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex6 = new System.Text.RegularExpressions.Regex(@"<input[\s\S]+</input *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex7 = new System.Text.RegularExpressions.Regex(@"<style[\s\S]+</style *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex8 = new System.Text.RegularExpressions.Regex(@"<link[\s\S]+</link *>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
System.Text.RegularExpressions.Regex regex9 = new System.Text.RegularExpressions.Regex(@"<(input|link|iframe|frameset|frame)[^>]*/>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
html = regex1.Replace(html, string.Empty); //过滤<script></script>标记
html = regex6.Replace(html, string.Empty); //过滤input
html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件
html = regex4.Replace(html, string.Empty); //过滤iframe
html = regex5.Replace(html, string.Empty); //过滤frameset
html = regex7.Replace(html, string.Empty); //过滤iframe
html = regex8.Replace(html, string.Empty); //过滤frameset
html = regex2.Replace(html, " href="#" (<A>) 属性
return html;
}
详细点
如果你只是为了确保用户输入的string里没有不安全的html标签/属性的话:http://www.cnblogs.com/coderzh/archive/2010/06/24/AntiXSS.html