摘要: 老外关于CQRS详细剖析 阅读全文
posted @ 2015-10-15 23:25 驰风者 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 关于autofac的使用陷阱,避免使用Autofac造成的内存泄漏问题 阅读全文
posted @ 2015-09-02 18:03 驰风者 阅读(2052) 评论(1) 推荐(1) 编辑
摘要: 1 public JsonResult HandleImgUpload(User user, System.Web.HttpPostedFileBase fileData, long shopId = 0) 2 { 3 try 4 ... 阅读全文
posted @ 2015-07-22 10:10 驰风者 阅读(353) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/KnightsWarrior/archive/2010/08/27/1809739.htmlhttp://www.csdn.net/article/2013-06-25/2815979-front-end-development 阅读全文
posted @ 2011-10-10 08:30 驰风者 阅读(133) 评论(0) 推荐(0) 编辑
摘要: http://referencesource.microsoft.com/ 阅读全文
posted @ 2014-11-19 12:31 驰风者 阅读(326) 评论(0) 推荐(0) 编辑
摘要: https://github.com/aspnethttp://www.hanselman.com/blog/CategoryView.aspx?category=ASP.NET 阅读全文
posted @ 2014-11-19 12:21 驰风者 阅读(105) 评论(0) 推荐(0) 编辑
摘要: jQuery获取Select选择的Text和 Value(转) jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val() 阅读全文
posted @ 2013-04-24 22:46 驰风者 阅读(256) 评论(0) 推荐(1) 编辑
摘要: 充分利用ASP.NET的三种缓存提高站点性能(转载)本文来源于:http://www.cnblogs.com/chorrysky/archive/2009/05/12/1455069.html ,移动此,是为本人查找方便,请见谅!ASP.NET提供三种主要形式的缓存:页面级输出缓存、用户控件级输出缓存(或称为片段缓存)和缓存API。输出缓存和片段缓存的优点是非常易于实现,在大多数情况下,使用这两种缓存就足够了。而缓存API则提供了额外的灵活性(实际上是相当大的灵活性),可用于在应用程序的每一层利用缓存。本文全面介绍了这三种缓存技术在系统各层中的应用。 在ASP.NET提供的许多特性中,缓存支. 阅读全文
posted @ 2013-04-02 23:11 驰风者 阅读(244) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2013-03-26 15:11 驰风者 阅读(4) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/hack1506/archive/2011/06/01/2065688.html 阅读全文
posted @ 2011-06-02 13:42 驰风者 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 常用JS方法 •事件源对象 event.srcElement.tagName event.srcElement.type •捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); •事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey •事件返回值 event.returnValue •鼠标位置 event.x event.y •窗体活动元素 document.activeElement •绑定事件 document.captureEvent 阅读全文
posted @ 2011-05-27 16:59 驰风者 阅读(337) 评论(0) 推荐(0) 编辑
摘要: http://www.phpchina.com/?action-viewnews-itemid-37459 阅读全文
posted @ 2011-05-27 14:37 驰风者 阅读(161) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/p/waypoints/attention_list?pp=150 阅读全文
posted @ 2011-05-25 16:24 驰风者 阅读(113) 评论(0) 推荐(0) 编辑
摘要: http://imakewebthings.github.com/jquery-waypoints/infinite-scroll/ 阅读全文
posted @ 2011-05-25 15:39 驰风者 阅读(352) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/zh-cn/library/bb310979%28v=VS.90%29.aspx 阅读全文
posted @ 2011-05-18 18:20 驰风者 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 简介:File API 是 Mozilla 向 W3C 提出的一个草案,旨在用标准 JavaScript API 实现本地文件的读取。File API 将极大地方便 Web 端的文件上传等操作,并有望成为未来的 HTML 5 规范的一部分。本文将介绍 File API 的概况,并用两个实例展示 File API 的应用。概述以往对于基于浏览器的应用而言,访问本地文件都是一件头疼的事情。虽然伴随着 Web 2.0 应用技术的不断发展,JavaScript 正在扮演越来越重要的角色,但是出于安全性的考虑,JavaScript 一直是无法访问本地文件的。于是,为了在浏览器中能够实现诸如拖拽并上传本地 阅读全文
posted @ 2011-05-18 13:10 驰风者 阅读(10523) 评论(2) 推荐(3) 编辑