摘要: 1、初步接触mvc 路由 routes.MapRoute( "CM", "CM/{controller}/{action}/{id}/", new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); 匹配: 阅读全文
posted @ 2017-02-17 18:18 拾诚 阅读(498) 评论(0) 推荐(0) 编辑
摘要: c# .net 我的Application_Error 全局异常抓取处理 阅读全文
posted @ 2017-02-14 16:01 拾诚 阅读(4934) 评论(0) 推荐(1) 编辑
摘要: c# .net Global.asax文件的作用 阅读全文
posted @ 2017-02-14 11:50 拾诚 阅读(21957) 评论(1) 推荐(4) 编辑
摘要: C# ASP.NET机制详细的管道事件流程 阅读全文
posted @ 2017-02-14 10:41 拾诚 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 正则表达式及常用正则表达式大全! 阅读全文
posted @ 2017-01-13 17:44 拾诚 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 生成随机字符串简单版 阅读全文
posted @ 2017-01-03 16:16 拾诚 阅读(6354) 评论(0) 推荐(0) 编辑
摘要: //动态调用wcf方法 string url = "http://localhost:54379/ServiceWCF.svc"; IDoubleService proxy = WcfInvokeFactory.CreateServiceByUrl<IDoubleService>(url); int 阅读全文
posted @ 2017-01-03 14:29 拾诚 阅读(2349) 评论(0) 推荐(0) 编辑
摘要: Web Service:严格来说是行业标准,也就是Web Service 规范,WCF:WCF 是一个分布式应用的开发框架,属于特定的技术,或者平台。二者不是一个范畴。 阅读全文
posted @ 2017-01-03 11:41 拾诚 阅读(294) 评论(0) 推荐(0) 编辑
摘要: c# .net获取文件夹下的所有文件(多层递归),并获取区间数据(Jsion,xml等数据)写出到处理文件,学习分享~ 阅读全文
posted @ 2016-12-27 23:35 拾诚 阅读(2879) 评论(0) 推荐(0) 编辑
摘要: 一、 单例(Singleton)模式 单例模式的特点: 单例类只能有一个实例。 单例类必须自己创建自己的唯一实例。 单例类必须给所有其它对象提供这一实例。 单例模式应用: 每台计算机可以有若干个打印机,但只能有一个Printer Spooler,避免两个打印作业同时输出到打印机。 一个具有自动编号主 阅读全文
posted @ 2016-12-20 10:18 拾诚 阅读(270) 评论(0) 推荐(0) 编辑