asp.net 根据dataset获取大字符串(直接转出json)
摘要:
方法:public static string GetJsonByDataset(DataSet ds) { if (ds == null || ds.Tables.Count <= 0 || ds.Tables[0].Rows.Count <= 0) { return null; }... 阅读全文
posted @ 2015-09-17 17:16 叶远明 阅读(235) 评论(0) 推荐(0) 编辑