11 2016 档案
C#完美读取CSV
摘要:/// <summary> /// 将DataTable中数据写入到CSV文件中 /// </summary> /// <param name="dt">提供保存数据的DataTable</param> /// <param name="fileName">CSV的文件路径</param> publ 阅读全文
posted @ 2016-11-30 12:03 记性特差 阅读(9792) 评论(1) 推荐(0)
Delegates, Events, and Anonymous Methods 委托、事件与匿名方法
摘要:http://www.cnblogs.com/r01cn/archive/2012/11/30/2795977.html 阅读全文
posted @ 2016-11-16 15:15 记性特差 阅读(222) 评论(0) 推荐(0)
Word 操作组件介绍 - Spire.Doc
摘要:http://www.cnblogs.com/liqingwen/p/5898368.html 阅读全文
posted @ 2016-11-11 14:42 记性特差 阅读(269) 评论(0) 推荐(0)
动态调用webservice
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> protected string TestService(string strurl,string methodname) { System.Net.WebClient client = ... 阅读全文
posted @ 2016-11-09 16:56 记性特差 阅读(331) 评论(0) 推荐(0)
C#进阶系列——DDD领域驱动设计初探(四):WCF搭建
摘要:http://www.cnblogs.com/landeanfen/p/4841211.html 阅读全文
posted @ 2016-11-02 14:29 记性特差 阅读(163) 评论(0) 推荐(0)
ASP.NET中Session的sessionState 4种mode模式
摘要:转自:http://www.cnblogs.com/libingql/p/4675752.html sessionState的4种mode模式 在ASP.NET中Session的sessionState的4中mode模式:Off、InProc、StateServer及SqlServer。 2. Of 阅读全文
posted @ 2016-11-01 17:59 记性特差 阅读(285) 评论(0) 推荐(0)
ASPNET 页面编码
摘要:转自:http://www.cnblogs.com/libingql/archive/2009/04/11/1433771.html 设置ASPNET页面编码格式 1、Web.Config设置 <configuration> <system.web> <globalization requestEn 阅读全文
posted @ 2016-11-01 16:47 记性特差 阅读(216) 评论(0) 推荐(0)
TinyMCE下载及使用
摘要:1、TinyMCE下载 官方下载网址:http://www.tinymce.com/ 简体中文语言包下载:http://www.tinymce.com/i18n/index.php?ctrl=lang&act=download&pr_id=1 2、下载包中示例 代码: 效果图: 阅读全文
posted @ 2016-11-01 16:40 记性特差 阅读(2166) 评论(0) 推荐(0)
IE8/9 本地预览上传图片
摘要:本地预览的意思是,在选择图片之后先不上传到服务器,而是由一个<img>标签来预览本地的图片,非 IE8/9 浏览器可以从<input type=“file”/>中获取到图片流,然后设置到<img src=“”>进行显示,但 IE8/9 浏览器只能获取到本地图片的绝对路径,并且设置 src 是无效的。 阅读全文
posted @ 2016-11-01 15:44 记性特差 阅读(1301) 评论(0) 推荐(0)