<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_胖子的小屋_分类_心得体会</title><id>http://feed.cnblogs.com/blog/u/9823/category/29559/rss</id><updated>2012-06-01T13:36:28Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/category/29559.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/9823/category/29559/rss"/><entry><id>http://www.cnblogs.com/freemantc/archive/2010/02/24/1672616.html</id><title type="text">XML、二进制、SOAP的序列化</title><summary type="text">目的 将对象序列化之后，可以以文件的形式保存下来。 区别 XML 二进制 SOAP 序列化类 XmlSerializer BinaryFormatter SoapFormatter SerializableAttribute 标记 不需要 需要 需要 ISerializable 接口 不需要 需要 需要 无参构造函数 必须有 不需要 不需要 被序列化的数据成员属性 public all all ...</summary><published>2010-02-24T05:45:00Z</published><updated>2010-02-24T05:45:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2010/02/24/1672616.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2010/02/24/1672616.html"/><content type="text">目的 将对象序列化之后，可以以文件的形式保存下来。 区别 XML 二进制 SOAP 序列化类 XmlSerializer BinaryFormatter SoapFormatter SerializableAttribute 标记 不需要 需要 需要 ISerializable 接口 不需要 需要 需要 无参构造函数 必须有 不需要 不需要 被序列化的数据成员属性 public all all ...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2010/01/20/1652321.html</id><title type="text">清除UTF-8文件的BOM头</title><summary type="text">场景： 和某公司合作，给其提供xml文件。对方回邮件说：“你的文件是不是用写字板之类的编辑工具打开过？以二进制查看的时候文件头部有EF BB BF这3个字节……能否去掉？” 查阅了一些资料，发现这是windows系统自动添加的东西，而且调用.Net类库直接生成文件的方法，只要用utf-8编码，都会有这个东西。太无奈了，只好自己动手去掉这些了。   实现： /// &lt;sum...</summary><published>2010-01-20T05:42:00Z</published><updated>2010-01-20T05:42:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2010/01/20/1652321.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2010/01/20/1652321.html"/><content type="text">场景： 和某公司合作，给其提供xml文件。对方回邮件说：“你的文件是不是用写字板之类的编辑工具打开过？以二进制查看的时候文件头部有EF BB BF这3个字节……能否去掉？” 查阅了一些资料，发现这是windows系统自动添加的东西，而且调用.Net类库直接生成文件的方法，只要用utf-8编码，都会有这个东西。太无奈了，只好自己动手去掉这些了。   实现： /// &lt;sum...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2007/08/07/845785.html</id><title type="text">关于javascript编码url的中文参数</title><summary type="text">做中文站点，在url中使用中文参数太正常了，比如：http://website/list.aspCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gt;?keyword=关键字在理想状态下，是不需要做任何的处理，list.aspx页面可以接收到“关键字”这个中...</summary><published>2007-08-07T02:19:00Z</published><updated>2007-08-07T02:19:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2007/08/07/845785.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2007/08/07/845785.html"/><content type="text">做中文站点，在url中使用中文参数太正常了，比如：http://website/list.aspCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gt;?keyword=关键字在理想状态下，是不需要做任何的处理，list.aspx页面可以接收到“关键字”这个中...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2006/07/05/443008.html</id><title type="text">一个简单的操作活动目录的类（ADHelper）</title><summary type="text">工作关系，用了vb.net语法。代码中注释写的比较详细，直接贴代码上去了。注意：别忘了添加System.DirectoryServices.dll的引用'-----------------------------------------------------------------------------'说明：操作AD用到了两种协议，WinNT和LDAP''WinNT——可以以较高的权限进行操...</summary><published>2006-07-05T01:21:00Z</published><updated>2006-07-05T01:21:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2006/07/05/443008.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2006/07/05/443008.html"/><content type="text">工作关系，用了vb.net语法。代码中注释写的比较详细，直接贴代码上去了。注意：别忘了添加System.DirectoryServices.dll的引用'-----------------------------------------------------------------------------'说明：操作AD用到了两种协议，WinNT和LDAP''WinNT——可以以较高的权限进行操...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2006/01/16/318116.html</id><title type="text">SmartPhone下解决rm、rmvb等格式电影播放的方案（参考意见）</title><summary type="text">偶的老moto手机陪我走过了大学与工作的头两年，终于寿终正寝了，考虑换部新的手机。考察了一下，新购dopod575手机一部。呵呵，传说中的smartphone哦，windows mobile操作系统，挺好玩儿的。既然买了，就要好好研究里面的功能嘛，于是乎，上网搜索资料，查阅使用心得，下载推荐软件，两天时间就搞个七七八八了。呵呵，还是播放电影比较有意思，在回家路上看个小段子也是蛮惬意的（注意别被贼盯...</summary><published>2006-01-16T04:06:00Z</published><updated>2006-01-16T04:06:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2006/01/16/318116.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2006/01/16/318116.html"/><content type="text">偶的老moto手机陪我走过了大学与工作的头两年，终于寿终正寝了，考虑换部新的手机。考察了一下，新购dopod575手机一部。呵呵，传说中的smartphone哦，windows mobile操作系统，挺好玩儿的。既然买了，就要好好研究里面的功能嘛，于是乎，上网搜索资料，查阅使用心得，下载推荐软件，两天时间就搞个七七八八了。呵呵，还是播放电影比较有意思，在回家路上看个小段子也是蛮惬意的（注意别被贼盯...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/12/26/304800.html</id><title type="text">读写类似web.config的xml格式文件</title><summary type="text">'读写类似web.config的xml格式文件PublicClassConfigClassConfig私有成员变量#Region"私有成员变量"'配置文件路径PrivatesPathAsString'配置文件对象（xml格式）PrivatexDocAsXml.XmlDocument#EndRegion构造函数#Region"构造函数"'默认构造函数(取得当前目录下的app.config配置)Pub...</summary><published>2005-12-26T06:39:00Z</published><updated>2005-12-26T06:39:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/12/26/304800.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/12/26/304800.html"/><content type="text">'读写类似web.config的xml格式文件PublicClassConfigClassConfig私有成员变量#Region"私有成员变量"'配置文件路径PrivatesPathAsString'配置文件对象（xml格式）PrivatexDocAsXml.XmlDocument#EndRegion构造函数#Region"构造函数"'默认构造函数(取得当前目录下的app.config配置)Pub...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/11/14/276086.html</id><title type="text">Awstats 安装使用说明</title><summary type="text">简介AWStats是一个基于Perl的WEB日志分析工具。AWStats的运行模式1、统计分析日志：将结果保存在一个txt文件中，最新版本支持xml数据格式。2、输出分析结果：利用cgi程序输出，或生成静态html文件进行浏览。在Windows下安装AWStats是perl语言书写的程序，所以必选先安装ActivePerl(for win32)程序。1、安装ActivePerl下载压缩包，解压缩之...</summary><published>2005-11-14T08:30:00Z</published><updated>2005-11-14T08:30:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/11/14/276086.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/11/14/276086.html"/><content type="text">简介AWStats是一个基于Perl的WEB日志分析工具。AWStats的运行模式1、统计分析日志：将结果保存在一个txt文件中，最新版本支持xml数据格式。2、输出分析结果：利用cgi程序输出，或生成静态html文件进行浏览。在Windows下安装AWStats是perl语言书写的程序，所以必选先安装ActivePerl(for win32)程序。1、安装ActivePerl下载压缩包，解压缩之...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/09/01/227837.html</id><title type="text">关于保持页面滚动条位置的一些体会</title><summary type="text">在一个很长的列表中进行操作，当用户触发PostBack事件的时候，需要保持滚动条所在位置。搜索了一下，发现有两种方法可以实现。第一种，在msdn中找到的，设置Page的SmartNavigation（智能导航）属性为True。原文的备注是这样说的：在大多数情况下不要在代码中设置该属性。在 .aspx 文件的 @ Page 指令中将 SmartNavigation 属性设置为 true。请求该页时，...</summary><published>2005-09-01T05:45:00Z</published><updated>2005-09-01T05:45:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/09/01/227837.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/09/01/227837.html"/><content type="text">在一个很长的列表中进行操作，当用户触发PostBack事件的时候，需要保持滚动条所在位置。搜索了一下，发现有两种方法可以实现。第一种，在msdn中找到的，设置Page的SmartNavigation（智能导航）属性为True。原文的备注是这样说的：在大多数情况下不要在代码中设置该属性。在 .aspx 文件的 @ Page 指令中将 SmartNavigation 属性设置为 true。请求该页时，...</content></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/07/20/196441.html</id><title type="text">关于在查询统计中日期的比较</title><summary type="text"/><published>2005-07-20T03:49:00Z</published><updated>2005-07-20T03:49:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/07/20/196441.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/07/20/196441.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/06/23/179701.html</id><title type="text">ASP.NET Forms 身份验证</title><summary type="text"/><published>2005-06-23T06:32:00Z</published><updated>2005-06-23T06:32:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/06/23/179701.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/06/23/179701.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/freemantc/archive/2005/06/02/166595.html</id><title type="text">关于ListBox和DataTable的一点儿心得</title><summary type="text"/><published>2005-06-02T03:59:00Z</published><updated>2005-06-02T03:59:00Z</updated><author><name>胖子</name><uri>http://www.cnblogs.com/freemantc/</uri></author><link rel="alternate" href="http://www.cnblogs.com/freemantc/archive/2005/06/02/166595.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/freemantc/archive/2005/06/02/166595.html"/><content type="text"/></entry></feed>
