摘要: 1 打开cmd 2 查找windows服务的PID:SC queryex service_name 3 杀掉进程:taskkill /PID service_pid /f 4 卸载服务 sc delete servicename 阅读全文
posted @ 2019-01-11 16:36 chenlijun0102 阅读(249) 评论(0) 推荐(0) 编辑
摘要: //数字转换为大写 function convertCurrency(money) { //汉字的数字 var cnNums = new Array('零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'); //基本单位 var cnIntRadice = 阅读全文
posted @ 2018-09-10 08:54 chenlijun0102 阅读(268) 评论(0) 推荐(0) 编辑
摘要: CREATE function SplitIn(@c varchar(200),@split varchar(2)) returns @t table(col varchar(20)) as begin while(charindex(@split,@c)<>0) begin insert @t(c 阅读全文
posted @ 2018-08-20 15:17 chenlijun0102 阅读(983) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/gaochundong/p/everyone_is_a_dba_sp_info_collection.html 阅读全文
posted @ 2018-08-15 14:34 chenlijun0102 阅读(130) 评论(0) 推荐(0) 编辑
摘要: function InitDeadLine() { var t = new Date(); var t_s = t.getTime(); t.setTime( t_s + 1000 * 60 * 60 * 24 * 10 ); var y = t.getFullYear(); var m = t.g 阅读全文
posted @ 2018-08-01 09:15 chenlijun0102 阅读(179) 评论(0) 推荐(0) 编辑
摘要: protected void RemoveEmpty(DataTable dt) { List<DataRow> removelist = new List<DataRow>(); for (int i = 0; i < dt.Rows.Count; i++) { bool IsNull = tru 阅读全文
posted @ 2018-08-01 08:59 chenlijun0102 阅读(952) 评论(0) 推荐(0) 编辑
摘要: public bool HasRepeatData(DataTable dt,string[] colName) { bool flag=false; DataView myDataView = new DataView(dt); if (myDataView.ToTable(true, colNa 阅读全文
posted @ 2018-08-01 08:57 chenlijun0102 阅读(1470) 评论(0) 推荐(0) 编辑
摘要: 调用方法: <input type="text" onkeyup="onlyNonNegative(this)" /> 转:http://ivan0513.iteye.com/blog/729168 阅读全文
posted @ 2018-07-27 10:56 chenlijun0102 阅读(1349) 评论(0) 推荐(0) 编辑
摘要: 以下是前台接收: $.request = function (name) { var search = location.search.slice(1); var arr = search.split("&"); for (var i = 0; i < arr.length; i++) { var  阅读全文
posted @ 2018-07-27 08:56 chenlijun0102 阅读(376) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/n447194252/article/details/77839594 阅读全文
posted @ 2018-07-26 15:16 chenlijun0102 阅读(14519) 评论(0) 推荐(0) 编辑