07 2013 档案
摘要:/// /// C#运行bat文件 /// /// private void RunBat(string batPath) { Process pro = new Process(); FileInfo file = new FileInfo(batPath); //设置启动进程的初始目录 pro.StartInfo.WorkingDirectory = file.Directory.FullName; //...
阅读全文
摘要:==============C#=====================string[] v = { "01", "02" }; string[] txt = { "测试一", "测试二" }; Dictionary dic = new Dictionary(); for (int i = 0; i < 2; i++) { dic.Add(v[i], txt[i]); } BindingSource bs = new BindingSource(); bs.DataSource = dic; checked
阅读全文
摘要:把一个页面A提交,然后获取另一个页面B的整个页面信息,覆盖在提交信息的页面A
阅读全文
摘要:如果是两个数组进行对比,去掉相同的数组元素。
阅读全文
摘要:Js日期选择器并自动加入到输入框中Js日期选择,可以的一个页面中重复使用本JS日历,兼容IE及火狐等主流浏览器,而且界面简洁、美观,操作体验也不错。--------------转自:http://www.codefans.net/jscss/code/646.shtml
阅读全文
摘要:chrome浏览器
阅读全文