上一页 1 ··· 3 4 5 6 7 8 9 下一页
  2018年8月13日
摘要: Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl 'the current model 'get the current active model Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox "There is no ... 阅读全文
posted @ 2018-08-13 17:51 wxm3177 阅读(125) 评论(0) 推荐(0) 编辑
  2018年7月19日
摘要: 通过APP唤起微信小游戏,并且接收小游戏参数 console.log("begin") console.log(wx.getLaunchOptionsSync()) console.log(JSON.stringify(wx.getLaunchOptionsSync())) wx.showModal 阅读全文
posted @ 2018-07-19 15:58 wxm3177 阅读(1698) 评论(0) 推荐(0) 编辑
  2018年7月17日
摘要: 指定某个函数方法在站点的Application_Start之前执行:PreApplicationStartMethodAttribute 先预备一个类,用于Start时调用 public static class MyPreApplicationStart { public static void  阅读全文
posted @ 2018-07-17 17:54 wxm3177 阅读(209) 评论(0) 推荐(0) 编辑
  2018年7月6日
摘要: ICell cell = row.GetCell(j); if (!cell.isDbNullOrNull()) { switch (cell.CellType) { ... 阅读全文
posted @ 2018-07-06 12:30 wxm3177 阅读(128) 评论(0) 推荐(0) 编辑
  2018年5月8日
摘要: 默认请求连接数 是2,在服务器操作系统上默认为10. 如果不修改这个并发连接限制,那么客户端同时可以建立的 http 连接数就只有2个或10个。 System.Net.ServicePointManager.DefaultConnectionLimit 这个可以获取到当前默认设置的 最大连接数。 调 阅读全文
posted @ 2018-05-08 11:08 wxm3177 阅读(947) 评论(0) 推荐(0) 编辑
  2018年4月18日
摘要: --表联合修改UPDATE payuser SET kid=bu.KID FROM dbo.Pay_UserTB AS payuser inner JOIN dbo.Pay_UserTempTB AS bu ON payuser.ID=bu.ID --付费率ALTER TABLE dbo.TempT 阅读全文
posted @ 2018-04-18 16:23 wxm3177 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 查询数据库里所有表名和字段名的语句SQL 查询所有表名:SELECT NAME FROM SYSOBJECTS WHERE TYPE='U'SELECT * FROM INFORMATION_SCHEMA.TABLES查询表的所有字段名:SELECT NAME FROM SYSCOLUMNS WHE 阅读全文
posted @ 2018-04-18 16:18 wxm3177 阅读(177) 评论(0) 推荐(0) 编辑
  2017年12月27日
摘要: netstat -an|findstr 80 nslookup 80 阅读全文
posted @ 2017-12-27 13:46 wxm3177 阅读(127) 评论(0) 推荐(0) 编辑
  2017年12月16日
摘要: net user WebSiteUser WebSiteUserWebSiteUser /add /yWMIC Path Win32_UserAccount Where Name="WebSiteUser" Set PasswordChangeable="FALSE"WMIC Path Win32_ 阅读全文
posted @ 2017-12-16 15:34 wxm3177 阅读(384) 评论(0) 推荐(0) 编辑
  2017年12月15日
摘要: https://support.microsoft.com/zh-cn/help/980368/a-update-is-available-that-enables-certain-iis-7-0-or-iis-7-5-handlers 通过打了补丁之后问题解决。 官方补丁地址:http://sup 阅读全文
posted @ 2017-12-15 13:36 wxm3177 阅读(172) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页