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
时间: 2024-10-26 02:09:46