请问ASP.NET 有像 mysql_real_escape_string 这样的类似的方法吗?C#版的不想要其它替代方法,只是想找这样的函数实现。mysql_real_escape_string

解决方案 »

  1.   

    差不多的。
    /// 去除HTML标记
            public static string NoHTML(string strHtml)
            {
                strHtml= Regex.Replace(strHtml, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);            strHtml= Regex.Replace(strHtml, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"([\r\n])[\s]+", "", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"-->", "", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"<!--.*", "", RegexOptions.IgnoreCase);            strHtml= Regex.Replace(strHtml, @"&(quot|#34);", "\"", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(nbsp|#160);", " ", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(iexcl|#161);", "\xa1", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(cent|#162);", "\xa2", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(pound|#163);", "\xa3", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&(copy|#169);", "\xa9", RegexOptions.IgnoreCase);
                strHtml= Regex.Replace(strHtml, @"&#(\d+);", "", RegexOptions.IgnoreCase);            strHtml.Replace("<", "");
                strHtml.Replace(">", "");
                strHtml.Replace("\r\n", "");
                strHtml= HttpContext.Current.Server.HtmlEncode(strHtml).Trim();            return strHtml;
            }
      

  2.   

    mysql_real_escape_string 可不是去除哦。是转换。