标签:
public static string FullTextSpecialSymbols(string strText)
{
strText = strText.Trim();
strText = strText.Replace("\"","‘‘");
return strText;
}
当然中间可以继续追加需要的过滤。
参考 :http://stackoverflow.com/questions/387198/escape-double-quotes-in-sql-2005-2008
标签:
原文地址:http://my.oschina.net/TOW/blog/372009