摘要: MyBatis-Plus 阅读全文
posted @ 2020-02-13 14:42 泽刚 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 电脑故尊 阅读全文
posted @ 2015-05-28 20:21 泽刚 阅读(11063) 评论(0) 推荐(0) 编辑
摘要: 周靖新浪博客 http://transbot.blog.163.comhttp://transbot.ys168.com清华大学图书系列 http://www.tup.tsinghua.edu.cn/book/listtypebook.asp?cid=2&id=76 CLR via c#的本书使用... 阅读全文
posted @ 2015-02-02 16:29 泽刚 阅读(470) 评论(0) 推荐(0) 编辑
摘要: js获取浏览器可见区域(不包括标题栏、地址栏、收藏夹栏状态栏等额外区域,仅为页面呈现区域)的高度和宽度宽度:document.documentElement.clientWidth高度:document.documentElement.clientHeight文档类型:XHTML1.0浏览器:ALL 阅读全文
posted @ 2014-08-28 17:05 泽刚 阅读(2219) 评论(0) 推荐(0) 编辑
摘要: 隐藏DataGridView某一列,用CSS控制CSS Code: .hidden{ display:none;}c# Code: 阅读全文
posted @ 2014-06-25 10:44 泽刚 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 判断当前Windows系统是win2000,winXP,winVista,win2003,win7...private static IntPtr GetSysTrayWnd() { IntPtr handle = FindWindow("Shell_TrayWn... 阅读全文
posted @ 2014-06-22 22:05 泽刚 阅读(505) 评论(0) 推荐(0) 编辑
摘要: 无法使用虚拟目录密码作为用户 Administrator 在本地登录到 C:\inetpub\wwwroot 阅读全文
posted @ 2014-05-14 20:50 泽刚 阅读(958) 评论(0) 推荐(1) 编辑
摘要: 1.笔记本安装mac10.62.用VMware8,需要在mac.vmx中添加以下语句guestOS = "darwin10"ich7m.present="TRUE"keyboard.vusb.enable="TRUE"mouse.vusb.enable="TRUE"monitor.virtual_exec = "automatic"monitor.virtual_mmu = "automatic"monitor_control.restrict_backdoor=" 阅读全文
posted @ 2013-08-18 08:50 泽刚 阅读(452) 评论(0) 推荐(0) 编辑
摘要: iis默认网站停止,启动时出现"发生意外错误 0x8ffe2740" 阅读全文
posted @ 2013-06-04 14:22 泽刚 阅读(316) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 递归 /// </summary> /// <param name="n"></param> /// <returns></returns> static int factorial(int n) { if (n > 1) { return factorial(n - 1); } else if (n == 1) { ... 阅读全文
posted @ 2013-04-26 15:36 泽刚 阅读(321) 评论(0) 推荐(0) 编辑