<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_谢小漫</title><subtitle type="text">挖掘数据的地瓜   联系：catcn@qq.com</subtitle><id>http://feed.cnblogs.com/blog/u/12684/rss</id><updated>2010-01-29T16:17:34Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/12684/rss"/><entry><id>http://www.cnblogs.com/catcn/archive/2010/01/30/1659572.html</id><title type="text">弹出选择窗体控件（附源码）</title><summary type="text">弹出选择窗体控件（附源码）久未在博客园发文章，今天有空，借着郁闷酒气，发个最近做的控件吧（未完结版本）。先上图，来点真相：这个应该是许多WebForm程序都需要的功能吧，最近写的小程序里边写了个，就抽出来了，弄了个自己的命名空间，具体的代码方面参考了一下郑健的《庖丁解牛:纵向切入ASP.NET 3.5控件和组件开发技术》一书中的某个控件。他那个是.net 3.5的，用了ScriptManager，...</summary><published>2010-01-29T16:13:00Z</published><updated>2010-01-29T16:13:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2010/01/30/1659572.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2010/01/30/1659572.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/09/23/1572766.html</id><title type="text">获取枚举描述信息（Description）2</title><summary type="text">之前记录过一种获取枚举描述信息的方法：http://cat.xiexiao.com/enum_description/今天，发现扩展一下Enum的方法更好，不过就是只能C#3.0才可以使用扩展方法。1。定义enumusing System;using System.ComponentModel;  public enum TimeOfDay { [Description("上午")] Moning...</summary><published>2009-09-23T09:01:00Z</published><updated>2009-09-23T09:01:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/09/23/1572766.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/09/23/1572766.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/06/11/1501266.html</id><title type="text">mshtml组件引用的问题</title><summary type="text">在一个系统里边应用了一个htmleditor，winform的程序，需要引用Microsoft.mshtml.dll。所以就引用了.net下的这个文件。添加引用&amp;gt;&amp;gt;.net&amp;gt;&amp;gt;选择Microsoft.mshtml。开发过程一切完好，没有遇到任何问题。但是部署到另外的一台机器的时候，就出现了，找不到引用的Microsoft.mshtml.dll的问题。看程序目录下也是没有ms...</summary><published>2009-06-11T04:32:00Z</published><updated>2009-06-11T04:32:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/06/11/1501266.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/06/11/1501266.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/04/30/1446770.html</id><title type="text">导出所有用户表到excel</title><summary type="text">导出所有用户表到excel，结合上一个发的存储过程。[代码]</summary><published>2009-04-30T01:51:00Z</published><updated>2009-04-30T01:51:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/04/30/1446770.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/04/30/1446770.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/04/09/1432211.html</id><title type="text">Sql Server数据导出EXCEL</title><summary type="text">还是在用Sql Server2000的，放出一个修改过的Sql Server数据导出EXCEL存储过程，提供了分sheet功能，之前的版本是没有这个功能的，解决超过65535行的问题。[代码]</summary><published>2009-04-09T01:48:00Z</published><updated>2009-04-09T01:48:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/04/09/1432211.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/04/09/1432211.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/02/04/1383825.html</id><title type="text">C#的串口编程 DataReceived</title><summary type="text">上次的C#的串口编程没有写这个，这次补充上去，就比较完整了。开始自己写写也不太会用事件来读取串口传来的信息：就想着用另外的线程来读取，用事件轻松挺多了。直接点的代码serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(serialPort1_DataReceived);//对你的serialPo...</summary><published>2009-02-04T05:37:00Z</published><updated>2009-02-04T05:37:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/02/04/1383825.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/02/04/1383825.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/01/15/1376233.html</id><title type="text">XML-RPC.NET的X509Certificates如何使用呢</title><summary type="text">XML-RPC.NET的X509Certificates如何使用呢?继续上一篇的问题。用起来挺简单的，但是有点麻烦的问题，也要到网上找找答案才行。先来看实验条件（这个X509Certificates好像应该是给SSL链接的时候使用的，我就这中使用方法）：1。先看看服务器端：xampplite下的php，已经开启了SSL链接（好像是装了就有了），默认已经加载php_xmlrpc.dll模块，用这个模...</summary><published>2009-01-15T04:13:00Z</published><updated>2009-01-15T04:13:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/01/15/1376233.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/01/15/1376233.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2009/01/14/1375919.html</id><title type="text">XML-RPC.NET</title><summary type="text">XML-RPC.NET，最近在用的一个DLL，用起来不错，几个代码就可以对远程的XML-RPC数据进行交换了。对XML-RPC不太懂的可以看看本网站的Xml-rpc类别。我用这个是用来与远程的PHP网站来进行数据交换。相比WebServices这个大块头来说，xml-rpc就是小菜一碟了。不过这小菜下下酒还是不错的。OverviewXML-RPC.NET is a library for impl...</summary><published>2009-01-14T14:27:00Z</published><updated>2009-01-14T14:27:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2009/01/14/1375919.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2009/01/14/1375919.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2008/12/27/1363798.html</id><title type="text">在读《C#和.NET 2.0实战》</title><summary type="text">这本应该是比较容易漏眼的书。不是红部头，不是MsPress，也不是O'Reilly的(原版是)。书店里边摸上手，看了看，内容不错。douban一下，才知道是作者的原版是法文版本。英文版到了一个小公司。然后中文版是图灵引进。图灵的书质量不错。该介绍的都介绍到了，就像是副标题：平台，语言与框架。实在是放在手边的工具书，上博客园的时候手边放一本，碰到有什么不懂，懂一点的，就翻翻。joyo对这本书的配送不...</summary><published>2008-12-27T14:25:00Z</published><updated>2008-12-27T14:25:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2008/12/27/1363798.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2008/12/27/1363798.html"/></entry><entry><id>http://www.cnblogs.com/catcn/archive/2008/12/12/1353973.html</id><title type="text">如何在ASP.NET中做异步</title><summary type="text">先来两个都是延时两秒的方法，需要using System.Threading;using System.Collections.Generic;[代码]第一个为页面顺序执行的按钮：[代码]打开trace后可以看到，页面的执行时间大于4秒，两个方法与页面在同一个线程里执行。第二个为参考上一篇文章如何在winform中用委托做异步的，也把委托做异步用在ASP.NET上：先定义委托：[代码]添加委托异步...</summary><published>2008-12-12T11:08:00Z</published><updated>2008-12-12T11:08:00Z</updated><author><name>谢小漫</name><uri>http://www.cnblogs.com/catcn/</uri></author><link rel="alternate" href="http://www.cnblogs.com/catcn/archive/2008/12/12/1353973.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/catcn/archive/2008/12/12/1353973.html"/></entry></feed>
