上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: //***************************************参数辅助对象***************************************/ //公共参数辅助对象 var ObjParameter = { //获取url参数值 //注意:参数值最好不用中文,会有编码问题 //name:参数名称 getQueryString: ... 阅读全文
posted @ 2017-06-12 11:39 妖狐鬼魅 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 单选复选框是否选中 选取全部选中的 $("#TBField :input[type='checkbox']:checked") 选取全部未选中的 $("#TBField :input[type='checkbox']:not(:checked)") 阅读全文
posted @ 2017-05-24 18:36 妖狐鬼魅 阅读(134) 评论(0) 推荐(0) 编辑
摘要: XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlData.ToString()); string jsonText = Newtonsoft.Json.JsonConvert.SerializeXmlNode(doc); 阅读全文
posted @ 2017-05-22 10:40 妖狐鬼魅 阅读(1417) 评论(0) 推荐(1) 编辑
摘要: 温馨提示: 1.各个版本的Visual Studio都是微软官方原版,未经破解、未做修改,全都可以直接安装使用。如果提示90天试用之类的,可以自己替换CDKEY。 2.ISO文件是光盘镜像文件,可以刻录为光盘,也可以用Daemon Tools Lite之类的软件挂载为光驱盘符,相当于插入了一张光盘。 阅读全文
posted @ 2017-05-17 17:34 妖狐鬼魅 阅读(639) 评论(0) 推荐(0) 编辑
摘要: 效果图 阅读全文
posted @ 2017-04-27 11:28 妖狐鬼魅 阅读(188) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 去除重复数据 /// </summary> /// <param name="table"></param> /// <returns></returns> public DataTable FilterRepeatTable(DataTable table) { 阅读全文
posted @ 2017-04-20 16:35 妖狐鬼魅 阅读(180) 评论(0) 推荐(0) 编辑
摘要: http://www.jq22.com/jquery-info12837 jQuery.print.js /* @license * jQuery.print, version 1.3.2 * (c) Sathvik Ponangi, Doers' Guild * Licence: CC-By (h 阅读全文
posted @ 2017-03-29 14:59 妖狐鬼魅 阅读(699) 评论(0) 推荐(0) 编辑
摘要: System.Text.StringBuilder res = new System.Text.StringBuilder(); res.Append(" "); res.Append(""); res.Append(""); res.Append(""); res.Appe... 阅读全文
posted @ 2017-03-02 16:29 妖狐鬼魅 阅读(9407) 评论(1) 推荐(1) 编辑
摘要: //解决IE导出标题乱码 Response.AddHeader("content-disposition", "attachment; filename=" + HttpUtility.UrlEncode("大型设备库存记录", System.Text.Encoding.UTF8) + ".xls" 阅读全文
posted @ 2017-02-28 09:31 妖狐鬼魅 阅读(701) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tas 阅读全文
posted @ 2017-02-23 22:42 妖狐鬼魅 阅读(479) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页