摘要:
public static DataTable ListToDataTable<T>(List<T> entitys) { //检查实体集合不能为空 if (entitys == null || entitys.Count < 1) { throw new Exception("需转换的集合为空") 阅读全文
摘要:
#region JavaScriptSerializer //这是一种C#自带的序列化的方式 //JavaScriptSerializer Serializer = new JavaScriptSerializer(); //List<Product> objs = Serializer.Deser 阅读全文
摘要:
List<string> list = new List<string>(); DataTable dt = OrdersBll.GetDescrlineChart(" 1=1 and Company_Id='"+Company_Id+"' and Flag=0").Tables[0]; for ( 阅读全文
摘要:
public class Custom_sort: IComparer<string> { List<string> _strs; public Custom_sort(string[] strs) { _strs = strs.Distinct().ToList(); } public int C 阅读全文
摘要:
问题:在一般处理程序(.ashx)中累加[index='b']的值 难点:前台获取JSON值后台解析 解决: //#region 把index=b的值存在JSON对象中 function AjaxGetSum() { var arr = []; $("input[index='b']").each( 阅读全文
摘要:
string path = @"C:\Users\Administrator\Desktop\folder of the\folder of the\Excel"; if (Directory.Exists(path))//判断有没有这个文件夹 { DataTable dt = new DataTa 阅读全文
摘要:
List<int> LstAllStatusCode = new List<int>() { 1, 2, 3, 4, 5 }; List<int> LstQueryedStatusCode = new List<int>(); /*try get other status that the data 阅读全文
摘要:
首先我们需要在iis上部署网站,部署完毕后 我们需要在web.confign 配置 handlers 通过path限制 下载格式 然后在创建一个类继承了 如果未通过就通通的到Login页面。 阅读全文