Let's go
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 55 下一页
摘要: 1、打开SqlSever,选择【工具】选择卡 > sqlserver profiler 2、点击【事件选择】选项卡,进行勾选需要跟踪的事件 3、点击【列筛选器】,这儿可以设置数据库的标识ID;查询语句: select DB_ID('数据库名称') 4、然后刷新系统,这儿则可以开始根据sql语句等操作 阅读全文
posted @ 2020-10-15 10:48 chenze 阅读(2314) 评论(0) 推荐(0) 编辑
摘要: 1.BeginInvoke来实现异步 Action action = new Action(delegate () { try { //这儿执行操作 } catch (Exception ex) { } }); action.BeginInvoke(null, null); 2.使用线程 HttpC 阅读全文
posted @ 2020-10-06 10:00 chenze 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1. List<string> planIDList = new List<string>(); planIDList.Add(strPlanid); planIDList = planIDList.Distinct().ToList();//去重 2. 常用树形结构数据处理 public List 阅读全文
posted @ 2020-09-13 12:08 chenze 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 生成vb文件指令 使用vs开发人员命令提示符 来执行以下指令 1. -- 指令 wsdl.exe /l:vb /n:webser /out:C:/LoginProxyService.vb http://192.168.1.2/services/Login?wsdl 2.本地的webservice生成 阅读全文
posted @ 2020-09-07 09:07 chenze 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: 1.j获取select值 var obj = document.getElementById(”testSelect”); //定位id var index = obj.selectedIndex; // 选中索引 var text = obj.options[index].text; // 选中文 阅读全文
posted @ 2020-08-24 20:14 chenze 阅读(181) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 55 下一页
有事您Q我