05 2012 档案

摘要:/// <summary> /// 替换html中的特殊符号 /// </summary> /// <param name="s"></param> /// <returns></returns> public static string ReplaceSpecialSymbols(this string s) { s = s.Replace("&amp;", "&"); s = s.Replace("&quot;", 阅读全文
posted @ 2012-05-05 16:33 [曾恩] 阅读(5977) 评论(0) 推荐(0)