上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 41 下一页

C# 中的迭代器 yield关键字 提高性能和可读性

摘要: 展示一个例子 IList<string> FindBobs(IEnumerable<string> names) { var bobs = new List<string>(); foreach(var currName in names) { if(currName == "Bob") bobs. 阅读全文
posted @ 2017-05-02 12:24 新西兰程序员 阅读(163) 评论(0) 推荐(0) 编辑

Web.config中的设置 forms 中的slidingExpiration的设置

摘要: 在ASP.NET 网站中,使用 Forms Authentication时,一般的设置是如下的: <authentication mode="Forms"><forms name="yourAuthCookie" loginUrl="/Login" protection="All" path="/" 阅读全文
posted @ 2017-05-01 12:47 新西兰程序员 阅读(879) 评论(0) 推荐(0) 编辑

AngularJS 2.0 学习

摘要: 前提: 下载和安装node.js 和 npm. https://nodejs.org/en/download/ npm安装 需要自己google 安装好之后,可以在cmd窗口中查看安装的版本 node -v 查看安装的node.js的版本 npm -v 查看安装的npm的版本 使用下列命令来从Git 阅读全文
posted @ 2017-04-28 12:32 新西兰程序员 阅读(90) 评论(0) 推荐(0) 编辑

C# 移除string[] 数组中的指定元素

摘要: 本文转载自 http://www.cnblogs.com/jcdd-4041/p/3279531.html 第一步:先把string[] 转换成 ArrayList 第二步:移除指定元素 第三步:在转换回string[] using System; using System.Collections; 阅读全文
posted @ 2017-04-12 12:41 新西兰程序员 阅读(1735) 评论(0) 推荐(0) 编辑

测试你开发的web系统在各种类型浏览器上的兼容性

摘要: 可以使用 https://www.browserstack.com 来测试你所开发的web系统在各种各样的浏览器,以及各种手机平台上的兼容性. 阅读全文
posted @ 2017-04-05 11:31 新西兰程序员 阅读(120) 评论(0) 推荐(0) 编辑

IIS7启用GZip压缩

摘要: 本文转载自 http://www.cnblogs.com/kissdodog/p/6252129.html GZip压缩通常会达到70%以上的压缩率,如果是手机Web这无疑会使网站的访问速度大大增加,无论是CSS合并、JS合并、图片合并都不如GZip压缩来得简单直接。如果一个网页是100K,那么启用 阅读全文
posted @ 2017-04-03 12:28 新西兰程序员 阅读(158) 评论(0) 推荐(0) 编辑

转载ASP.NET MVC中Session的处理机制

摘要: 本文章转载自 http://www.cnblogs.com/darrenji/p/3951065.html ASP.NET MVC中的Session以及处理方式 最近在ASP.NET MVC项目中碰到这样的情况:在一个controller中设置了Session,但在另一个controller的构造函 阅读全文
posted @ 2017-04-03 06:23 新西兰程序员 阅读(473) 评论(0) 推荐(0) 编辑

FormsAuthentication.Signout不能清楚服务器端cookie

摘要: 具体信息可以参考文章 https://support.microsoft.com/en-us/help/900111/the-formsauthentication.signout-method-does-not-prevent-cookie-reply-attacks-in-asp.net-app 阅读全文
posted @ 2017-03-24 08:34 新西兰程序员 阅读(220) 评论(0) 推荐(0) 编辑

Umbraco back office 登录不了,如何解决

摘要: 通过设置User的默认密码为"default", 它的Hash值为 bnWxWyFdCueCcKrqniYK9iAS+7E= 所以在SQL Server中执行以下脚本 UPDATE umbracoUser set userNoConsole=0, userdisabled=0, userLogin= 阅读全文
posted @ 2017-03-23 09:37 新西兰程序员 阅读(281) 评论(0) 推荐(0) 编辑

CSP 的有用资料

摘要: 具体请参考: http://software-security.sans.org/downloads/appsec-2014-files/building-a-content-security-policy-csp-eric-johnson.pdf 阅读全文
posted @ 2017-03-14 07:19 新西兰程序员 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 41 下一页