上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 详情见:http://www.cnblogs.com/zycblog/archive/2010/07/02/1769676.html 阅读全文
posted @ 2017-03-23 17:51 随学·笔记 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1、NFine mvc+ef 2、Grove orm架构 3、NHibernate orm 4、NBear 5、petshop 6、Membership 7、Brnshop 网上商城 8、cms快速开发:http://www.open-open.com/news/view/a90f1 9、c#开源框 阅读全文
posted @ 2017-03-23 11:19 随学·笔记 阅读(713) 评论(0) 推荐(0) 编辑
摘要: public static string GetIpAddress() { string ipAddress = null; if (HttpContext.Current != null) { ipAddress = HttpContext.Current.Request.S... 阅读全文
posted @ 2017-02-24 16:36 随学·笔记 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 详细:http://www.cnblogs.com/linJie1930906722/p/6060370.html$("#name").select2({ language: "zh-CN", placeholder: "请选择名称", tags: true, multiple: false, ... 阅读全文
posted @ 2017-02-24 15:05 随学·笔记 阅读(4052) 评论(1) 推荐(0) 编辑
摘要: 转:http://www.cnblogs.com/hllive/p/6029763.html 由vs2013新建“web窗体应用程序”的网站,URL不显示扩展名。那今天就实现该功能 1、首先打开vs2013>新建项目>如下图选择 2、选择项目右击>管理NuGet程序包>在搜索框输入(Friendly 阅读全文
posted @ 2017-02-13 17:03 随学·笔记 阅读(2044) 评论(0) 推荐(1) 编辑
摘要: 转自CSDN:http://blog.csdn.net/swarb/article/details/8206976 阅读全文
posted @ 2016-10-09 10:44 随学·笔记 阅读(290) 评论(0) 推荐(0) 编辑
摘要: List<string> 转 List<int> List<int> 转List<string> 阅读全文
posted @ 2016-09-27 11:42 随学·笔记 阅读(22914) 评论(2) 推荐(3) 编辑
摘要: Intersect 交集,Except 差集,Union 并集int[] oldArray = { 1, 2, 3, 4, 5 }; int[] newArray = { 2, 4, 5, 7, 8, 9 }; var jiaoJi = oldArray.Intersect(newArray).ToList();//2,4,5 var oldChaJi = oldArray.Except(new... 阅读全文
posted @ 2016-09-27 11:39 随学·笔记 阅读(38466) 评论(3) 推荐(7) 编辑
摘要: 匿名函数 function(arg){...} 这就定义了一个匿名函数,参数为arg。而调用函数时,是在函数后面写上括号和实参的,由于操作符的优先级,函数本身也需要用括号,即:(function(arg){...})(param) 这就相当于定义了一个参数为arg的匿名函数,并且将param作为参数 阅读全文
posted @ 2016-09-22 11:39 随学·笔记 阅读(196) 评论(0) 推荐(0) 编辑
摘要: webconfig 自定义section 阅读全文
posted @ 2016-09-08 11:01 随学·笔记 阅读(2915) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页