public static string FilterScript(string content)
{
string regexstr=@"<script.*</script>";
return Regex.Replace(content,regexstr,string.Empty,RegexOptions.IgnoreCase);
public static string FilterScript(string content)
{
string regexstr=@"<script.*</script>";
return Regex.Replace(content,regexstr,string.Empty,RegexOptions.IgnoreCase);