摘要:
//验证手机正则 var flag = !!phone.match(/^(0|86|17951)?(13[0-9]|15[012356789]|17[0-9]|18[0-9]|14[0-9])[0-9]{8}$/); if(flag==false){验证不通过!} 阅读全文
摘要:
一、前言 1.基于OWIN的项目摆脱System.Web束缚脱颖而出,轻量级+跨平台,使得ASP.NET应用程序只需依赖这个抽象接口,不用关心所运行的Web服务器。 2.OWIN.dll介绍 使用反编译工具打开Owin.dll,你会发现类库中就只有一个IAppBuilder接口,所以说OWIN是针对... 阅读全文
摘要:
1 class Program 2 { 3 4 //版本2:使用Redis的客户端管理器(对象池) 5 public static IRedisClientsManager redisClientManager = new PooledRedisC... 阅读全文
摘要:
前言CSRF(Cross-site request forgery跨站请求伪造,也被称为“One Click Attack”或者Session Riding,通常缩写为CSRF或者XSRF,是一种对网站的恶意利用。本文使用ASP.NET MVC提供的AntiForgery进行安全验证应用一、自定义F... 阅读全文
摘要:
volatile int Age = 10; public int GetAge() { return Age; }如上例子,调用GetAge()得到的是“主”内存区域的Age数值。用volatile修饰后的变量不允许有不同于“主”内存区域的变量拷贝。换句话说,一个变量... 阅读全文
摘要:
一、常见启动错误1."No mapping for the Unicode character exists in the target multi-byte code page"解决方案:Nginx所在的目录不能有中文二、常用命令 1.start nginx --启动 2.nginx -s sto... 阅读全文
摘要:
ASP.NET MVC5 Filter重定向问题一、问题描述 1.在Filter中使用直接filterContext.RequestContext.HttpContext.Response.Redirect(url) 会产生 "无法在发送HTTP标头之后进行重定向"。二、解决方案 1. 使用MVC自... 阅读全文
摘要:
一、资源1.http://referencesource.microsoft.com/二、备注1.可在线预览.Net Framework 4.6.1源码实现 阅读全文
摘要:
一、资源1.http://dotnet.github.io/2.http://www.codeproject.com/Articles/1005145/DNVM-DNX-and-DNU-Understanding-the-ASP-NET-Runtime3.https://github.com/dot... 阅读全文
摘要:
一、资源1.Redis中文网站: http://www.redis.cn/2.RedisDesktop http://redisdesktop.com/download 阅读全文