//去除空格 function trim(str) { return str.replace(/\s|\xA0/g,""); } /** *js数组转json * */ function arrayToJson(o) { var r = []; if (o==undefined||o==null) return "null"; if (typeof o == "string") return "\"" +…
(原文地址:http://xuzhihong1987.blog.163.com/blog/static/26731587201101853740294/) LINQ查询返回DataTable类型 在使用LINQ查询的时候,一般我们会返回List<T>或IList<T>类型,如下所示: 例1: public List<TSample> GetList() { using (BPDataContext db = newBPDataContext(TCTC_Connectio…