上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 46 下一页
摘要: 外网 强制退出程序 System.Environment.Exit(System.Environment.ExitCode); 阅读全文
posted @ 2018-03-30 16:42 小小高 阅读(163) 评论(0) 推荐(0)
摘要: cmd reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /d 1 /t REG_DWORD /f shutdown /r /t 0 搞定 阅读全文
posted @ 2018-03-27 09:33 小小高 阅读(148) 评论(0) 推荐(0)
摘要: 将SQL Server 安装程序\X86\SYSTEM\SQLUNIRL.DLL 替换到Win10 的 C:\windows\system32\目录下,64位win10 还要复制到SYSWOW64目录 替换同名文件。 权限不足改所有者 SQLUNIRL.DLL下载路径 https://files.c 阅读全文
posted @ 2018-03-26 16:01 小小高 阅读(1915) 评论(0) 推荐(0)
摘要: https://jingyan.baidu.com/article/4f7d5712d23f1b1a2119274b.html 阅读全文
posted @ 2018-03-26 11:31 小小高 阅读(277) 评论(0) 推荐(0)
摘要: 以管理员方式运行 CMD。然后执行 阅读全文
posted @ 2018-03-26 11:22 小小高 阅读(839) 评论(0) 推荐(0)
摘要: 1.Extensible authentication protocol 2.cng key lsolation 3.wlan autoconfig 阅读全文
posted @ 2018-02-02 18:49 小小高 阅读(140) 评论(0) 推荐(0)
摘要: 查找指定元素在数组中的index。 var arr=[1,2,3]; $.inArray(2, arr);//返回1 arr.splice($.inArray(2, arr),1); //从数组中删除指定元素。 arr.join(",") //返回"1,2,3" 阅读全文
posted @ 2017-12-05 15:42 小小高 阅读(378) 评论(0) 推荐(0)
摘要: 1.正数含小数 2.字母 /^[a-zA-Z]*$/ 3.汉字 /^[\u4e00-\u9fa5]*$/ 阅读全文
posted @ 2017-12-03 17:45 小小高 阅读(129) 评论(0) 推荐(0)
摘要: @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { } 阅读全文
posted @ 2017-12-03 14:25 小小高 阅读(262) 评论(0) 推荐(0)
摘要: public void Export() { HttpResponse Response = System.Web.HttpContext.Current.Response; // Load your source workbook Workbook workbook = new Workbook(); /... 阅读全文
posted @ 2017-12-03 10:50 小小高 阅读(1539) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 46 下一页