上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 46 下一页
摘要: 每天什么时候执形at 12:00 /every:Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday shutdown -r 阅读全文
posted @ 2017-09-26 00:56 小小高 阅读(152) 评论(0) 推荐(0)
摘要: https://github.com/gaoconggit/MyMVC 阅读全文
posted @ 2017-09-25 20:21 小小高 阅读(163) 评论(0) 推荐(0)
摘要: public class HomeController : Controller { // // GET: /Home/ static System.Windows.Forms.WebBrowser wb; public void ScreenCapture() { ... 阅读全文
posted @ 2017-09-16 15:08 小小高 阅读(352) 评论(0) 推荐(0)
摘要: Es6 写法 `ddddfdfdf dfdfdf ` 阅读全文
posted @ 2017-09-03 12:16 小小高 阅读(714) 评论(0) 推荐(0)
摘要: 转自逆心博客园 autofac 实例生命周期 实例生命周期决定在同一个服务的每个请求的实例是如何共享的。 当请求一个服务的时候,Autofac会返回一个单例 (single instance作用域), 一个新的对象 (per lifetime作用域) 或者在某种上下文环境中的单例。比如 一个线程 或 阅读全文
posted @ 2017-09-02 10:10 小小高 阅读(398) 评论(0) 推荐(0)
摘要: 1.当function里嵌套function时,内部的function可以访问外部function里的变量。 2. 外部变量(环境变量?), 包括: 2.1 全局变量,包括DOM。 2.2 外部函数的变量或函数。 如果一个函数访问了它的外部变量,那么它就是一个闭包。 从技术上来讲,在JS中,每个fu 阅读全文
posted @ 2017-09-01 18:09 小小高 阅读(239) 评论(0) 推荐(0)
摘要: //获取客户端计算机名称 System.Net.IPAddress clientIP = System.Net.IPAddress.Parse(Request.UserHostAddress);//根据目标IP地址获取IP对象 System.Net.IPHostEntry ihe = System.Net.Dns.GetHostEntry(cl... 阅读全文
posted @ 2017-08-31 12:21 小小高 阅读(534) 评论(0) 推荐(0)
摘要: //firefox -moz-user-select: none; //chrome、safari -webkit-user-select: none; //ie -ms-user-select: none; 阅读全文
posted @ 2017-08-30 17:20 小小高 阅读(489) 评论(0) 推荐(0)
摘要: C# 正则提取 Regex reg = new Regex(@"<img[\s]+src[\s]*=[\s]*['""](?<picPath>.*)['""][\s]*>"); reg.Match("<img src='http://www.baidu.com'>").Groups["picPath 阅读全文
posted @ 2017-08-29 22:50 小小高 阅读(154) 评论(0) 推荐(0)
摘要: $( "a.offsite" ).live( "click", function() { alert( "Goodbye!" ); // jQuery 1.3+ });//下面两个,第一个dom元素,不应该出现在第二个选择器中 $( document ).delegate( "a.offsite", "click", function() { alert( "Goodbye!" ); /... 阅读全文
posted @ 2017-08-29 15:45 小小高 阅读(403) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 46 下一页