摘要:
//***************************************参数辅助对象***************************************/ //公共参数辅助对象 var ObjParameter = { //获取url参数值 //注意:参数值最好不用中文,会有编码问题 //name:参数名称 getQueryString: ... 阅读全文
摘要:
单选复选框是否选中 选取全部选中的 $("#TBField :input[type='checkbox']:checked") 选取全部未选中的 $("#TBField :input[type='checkbox']:not(:checked)") 阅读全文
摘要:
XmlDocument doc = new XmlDocument(); doc.LoadXml(xmlData.ToString()); string jsonText = Newtonsoft.Json.JsonConvert.SerializeXmlNode(doc); 阅读全文
摘要:
温馨提示: 1.各个版本的Visual Studio都是微软官方原版,未经破解、未做修改,全都可以直接安装使用。如果提示90天试用之类的,可以自己替换CDKEY。 2.ISO文件是光盘镜像文件,可以刻录为光盘,也可以用Daemon Tools Lite之类的软件挂载为光驱盘符,相当于插入了一张光盘。 阅读全文
摘要:
/// <summary> /// 去除重复数据 /// </summary> /// <param name="table"></param> /// <returns></returns> public DataTable FilterRepeatTable(DataTable table) { 阅读全文
摘要:
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 阅读全文
摘要:
System.Text.StringBuilder res = new System.Text.StringBuilder(); res.Append(" "); res.Append(""); res.Append(""); res.Append(""); res.Appe... 阅读全文
摘要:
//解决IE导出标题乱码 Response.AddHeader("content-disposition", "attachment; filename=" + HttpUtility.UrlEncode("大型设备库存记录", System.Text.Encoding.UTF8) + ".xls" 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tas 阅读全文