上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 41 下一页

C#操作JSON学习

摘要: JSON(全称为JavaScript Object Notation) 是一种轻量级的数据交换格式。它是基于JavaScript语法标准的一个子集。 JSON采用完全独立于语言的文本格式,可以很容易在各种网络、平台和程序之间传输。JSON的语法很简单,易于人阅读和编写,同时也易于机器解析和生成。 J 阅读全文
posted @ 2016-08-19 06:07 新西兰程序员 阅读(575) 评论(0) 推荐(0) 编辑

C# 产生随机密码

摘要: using System.Web.Security var rawPassword = System.Web.Security.Membership.GeneratePassword(10,1) return Regex.Replace(rawPassword, @"[^a-zA-Z0-9]", m 阅读全文
posted @ 2016-08-12 08:55 新西兰程序员 阅读(1653) 评论(0) 推荐(0) 编辑

博客园上好的技术系列收藏

摘要: http://blog.oneapm.com/apm-tech/130.html 7天玩转ASP.NET MVC http://powertoolsteam.blog.51cto.com/2369428/1674037 七天学会ASP.NET MVC http://www.cnblogs.com/y 阅读全文
posted @ 2016-08-10 06:25 新西兰程序员 阅读(190) 评论(0) 推荐(0) 编辑

OWIN学习

摘要: 在微软.net的dll中 有Microsoft.Owin Microsoft.Owin.Security, Microsoft.Owin.Security.Cookies, Microsoft.Owin.Security.OAuth, Microsoft.AspNet.Identity.Owin 那 阅读全文
posted @ 2016-08-02 07:18 新西兰程序员 阅读(188) 评论(0) 推荐(0) 编辑

转载 ASP.NET Web API 学习

摘要: 转载关于ASP.NET Web API 的学习网址 http://www.cnblogs.com/aehyok/p/3432158.html http://www.mashangpiao.net/Article/Content/10852 https://msdn.microsoft.com/zh- 阅读全文
posted @ 2016-07-28 06:09 新西兰程序员 阅读(85) 评论(0) 推荐(0) 编辑

Umbraco中的ModelBuilder

摘要: Umbraco中的ModelBuilder有以下几种形式 Pure Live models Dll models LiveDll models AppData models LiveAppData models 具体详细的介绍文章可以参见: https://github.com/zpqrtbnk/Z 阅读全文
posted @ 2016-07-27 12:06 新西兰程序员 阅读(232) 评论(0) 推荐(0) 编辑

Umbraco中Document Type取名限制

摘要: 在Umbraco中,每一个Document type都会被ModelsBuilder生成一个class,但是,有些developers发现,当你把一些Document Type命名为Grid, Properties, Content时,系统会产生错误, 因为ModelsBuilder把它们生成cs后 阅读全文
posted @ 2016-07-27 10:14 新西兰程序员 阅读(121) 评论(0) 推荐(0) 编辑

C#中的强类型说明

摘要: 转载原地址: http://www.cnblogs.com/JeffreyZhao/archive/2009/02/27/mvc-use-strong-type-everywhere.html 我们继续来谈《最佳实践》,这次的主题便是“强类型”。 一直说C#是强类型语言,通俗地讲,便是指C#中的“变 阅读全文
posted @ 2016-07-27 07:16 新西兰程序员 阅读(1077) 评论(0) 推荐(0) 编辑

Visual Studio中的Build Event

摘要: 在VS中,进行build时,可以在build之前,或者之后执行一些操作,比如把一些css,font,images文件从一个项目的文件夹复制到另一个项目的文件夹 方法: 点击项目,右键-属性-Build Events ,或者直接在双击项目下面的Properties,也可以打开 在Build Event 阅读全文
posted @ 2016-07-27 06:53 新西兰程序员 阅读(1012) 评论(0) 推荐(0) 编辑

Umbraco Forms 使Rendering Forms scripts 在不同的template中

摘要: 具体请参考 https://our.umbraco.org/documentation/products/umbracoforms/developer/Rendering-Scripts/ 转载 https://our.umbraco.org/documentation/products/umbra 阅读全文
posted @ 2016-07-26 12:00 新西兰程序员 阅读(179) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 41 下一页