摘要: //去除字符串头尾空格或指定字符String.prototype.Trim= function(c){ if(c==null||c=="") { var str= this.replace(/^/s*/, ''); var rg = //s/; var i = str.length; while ( 阅读全文
posted @ 2016-05-23 09:41 DinnisZhang 阅读(534) 评论(0) 推荐(0)
摘要: using Common;using System;using System.Collections.Generic;using System.Configuration;using System.IO;using System.Linq;using System.Web;using System. 阅读全文
posted @ 2016-05-06 14:41 DinnisZhang 阅读(1297) 评论(0) 推荐(0)
摘要: 控件: <select id="txt地段" name="txt地段" style="width: 100%; height: 100%; line-height: 28px; position: absolute; left: 0px; top: 0px" class="editable"> <o 阅读全文
posted @ 2016-05-06 14:35 DinnisZhang 阅读(242) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.IO;using System.Text;using System.Threading; namespace BLL{ /// <summary> /// 日志类 /// </sum 阅读全文
posted @ 2016-05-06 14:33 DinnisZhang 阅读(210) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data;using System.IO;using System.Xml; public class XmlDatasetConvert { / 阅读全文
posted @ 2016-05-06 14:29 DinnisZhang 阅读(301) 评论(0) 推荐(0)
摘要: using Newtonsoft.Json;using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Text;using System.Text.RegularExp 阅读全文
posted @ 2016-05-06 14:28 DinnisZhang 阅读(620) 评论(0) 推荐(0)
摘要: using System;using System.Web; /// <summary> /// 缓存相关的操作类 /// Copyright (C) Maticsoft /// </summary> public class DataCache { /// <summary> /// 获取当前应用 阅读全文
posted @ 2016-05-06 14:26 DinnisZhang 阅读(222) 评论(0) 推荐(0)
摘要: /// <summary> /// json验证 /// </summary> public class JsonSplit { public static bool IsJsonStart(string json) { return IsJsonStart(ref json); } public 阅读全文
posted @ 2016-05-06 14:25 DinnisZhang 阅读(769) 评论(0) 推荐(0)
摘要: /// <summary> /// 对比两个Model的不同之处 /// </summary> /// M M1 = new M(); /// M M2 = new M(); /// M1.id = 1; /// M1.guid = "123"; /// M2.id = 55555; /// M2. 阅读全文
posted @ 2016-05-06 14:23 DinnisZhang 阅读(734) 评论(0) 推荐(0)