摘要: http://www.asp.net/aspnet/overview/owin-and-katana/owin-oauth-20-authorization-server The assumption that users will log in by entering a user name an 阅读全文
posted @ 2015-02-15 17:48 Allan_Dragoon 阅读(361) 评论(0) 推荐(1) 编辑
摘要: 详见:http://www.cnblogs.com/artech/p/asp-net-web-api-pipeline.htmlhttp://www.codeproject.com/Articles/555923/ASP-NET-WebAPI-Hosting-Techniques 阅读全文
posted @ 2015-02-13 15:02 Allan_Dragoon 阅读(236) 评论(0) 推荐(0) 编辑
摘要: http://www.dotnet-tricks.com/Tutorial/webapi/Y95G050413-Difference-between-ASP.NET-MVC-and-ASP.NET-Web-API.htmlAsp.Net MVC is used to create web appli... 阅读全文
posted @ 2015-02-11 11:39 Allan_Dragoon 阅读(619) 评论(0) 推荐(0) 编辑
摘要: http://www.dotnet-tricks.com/Tutorial/webapi/JI2X050413-Difference-between-WCF-and-Web-API-and-WCF-REST-and-Web-Service.html.NET framework 有很多的技术来创建HT... 阅读全文
posted @ 2015-02-11 10:42 Allan_Dragoon 阅读(507) 评论(1) 推荐(0) 编辑
摘要: Asset Collection: 1. _id_ 2. CategoryId_1_Date_-1 3. CategoryId_1_Id_1 4. CategoryId_1_Name_1 5. CategoryId_1_Weight_1 6. GroupId_1 7. Name_1Ca... 阅读全文
posted @ 2014-10-24 14:16 Allan_Dragoon 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 翻译自http://docs.mongodb.org/manual/core/backups/有以下几种方法来备份MongoDB群集:通过复制底层数据文件来备份通过mongodump来备份通过MMS (MMS:MongoDB Management Service)云备份通过MMS On Prem 备... 阅读全文
posted @ 2014-10-24 11:07 Allan_Dragoon 阅读(572) 评论(0) 推荐(0) 编辑
摘要: 1. 安装wix3.62. 阅读全文
posted @ 2014-08-14 10:37 Allan_Dragoon 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 翻译自http://www.asp.net/aspnet/overview/owin-and-katana/an-overview-of-project-katana十多年来,基于ASP.NET框架已经开发了无数的网站和网络服务。伴随着网络应用程序开发的不断演进,ASP.NET也伴随着产生了新的技术... 阅读全文
posted @ 2014-03-20 17:07 Allan_Dragoon 阅读(647) 评论(0) 推荐(0) 编辑
摘要: 在传统的面向对象语言如C++、C#、Java中有类、对象、继承等概念。在JavaScript中又如何表示呢?JavaScript中没有class关键字,JavaScript中的类、对象、继承的概念是通过函数的构造调用和prototype来实现的。正如我们前面所讲:构造调用会创建一个新的空对象,对象从函数的prototype属性继承(注:JavaScript中,函数其实就是一个对象,每个函数都有一个prototype属性,这个属性也是一个对象 - 这个对象有一个constructor属性,这个属性指向这个函数)。那么利用这个特点我们可以总结出JavaScript中实现面向对象的机制:1. 构造函 阅读全文
posted @ 2014-02-07 22:40 Allan_Dragoon 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 上一篇讲了JavaScript的Scope Chain - 每一个函数都有一个scope chain与之关联,scope chain上有第一个对象维护着本地变量作为其属性。另外我们在JavaScript函数中经常看到this,那么this是不是scope chain上的第一个对象呢?答案是否。Scope chain是scope chain,this则是calling context,两者没有什么关系。正如JavaScript书籍中所讲的:除了参数之外,函数调用时会有另外一个值 - 称之为invocation context (调用上下文) - 这个值用this关键字来表示。我们到知道JavaS 阅读全文
posted @ 2014-02-07 16:34 Allan_Dragoon 阅读(307) 评论(0) 推荐(0) 编辑