<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_双赢、诚信</title><subtitle type="text">专注.NET技术</subtitle><id>http://feed.cnblogs.com/blog/u/14208/rss</id><updated>2008-08-18T10:54:19Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/14208/rss"/><entry><id>http://www.cnblogs.com/pw/archive/2008/08/18/1270568.html</id><title type="text">pcanywhere失去连接的一个解决方法</title><summary type="text">使用pcanywhere远程管理服务器的朋友肯定都遇到过因为网速等问题导致的忽然断线，然后就再也连接不上的情况，有时候会提示host is busy，有时候会说is not responding，总之遇到这样的问题真的很让人不爽，以前我的土办法就是打电话叫机房的人重启server，直到今天帮朋友调试服务器因为种种原因频繁遇到这一问题，到最后实在不好意思再给机房打电话了，却偶然发现原来可以通过sql...</summary><published>2008-08-18T10:54:00Z</published><updated>2008-08-18T10:54:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2008/08/18/1270568.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2008/08/18/1270568.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2008/02/29/1085768.html</id><title type="text">JS格式化日期字符串</title><summary type="text">1//格式化日期2Date.prototype.format=function(format)3{4varo=5{6"M+":this.getMonth()+1,//month7"d+":this.getDate(),//day8"h+":this.getHours(),//hour9"m+":this.getMinutes(),//minute10"s+":this.getSeconds(),/...</summary><published>2008-02-29T01:51:00Z</published><updated>2008-02-29T01:51:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2008/02/29/1085768.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2008/02/29/1085768.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/04/29/732595.html</id><title type="text">[软件共享]将数据库中的数据导出为SQL脚本</title><summary type="text">可以直接将数据库中的数据导出为脚本,并可以自己设置过滤条件。使用方法很简单，不在多说了。下面是软件截图。123下载：http://www.cnblogs.com/Files/pw/mssql2.rar</summary><published>2007-04-29T09:45:00Z</published><updated>2007-04-29T09:45:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/04/29/732595.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/04/29/732595.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/03/13/673429.html</id><title type="text">对文件下载的补充</title><summary type="text">我在ASP.NET中常用的文件上传下载方法一文中写了几种文件上传下载的方法，其中第二部分的下载当时没有具体说清楚，现在补充一下。对于有具体物理路径的文件下载，我们可以采用下面的思路，先将其转化成二进制流，然后用浏览器读出来，具体代码如下：/**////&amp;lt;summary&amp;gt;///下载文件///&amp;lt;/summary&amp;gt;///&amp;lt;paramname="path"&amp;gt;文件所在的物...</summary><published>2007-03-13T10:05:00Z</published><updated>2007-03-13T10:05:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/03/13/673429.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/03/13/673429.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/03/07/667136.html</id><title type="text">复制DataTable的一种方法</title><summary type="text">如果将程序返回的DataTable加入到自己定义的一个DataSet中，直接用ds.Tables.Add(dt)的方法，就会出现&amp;#8220;该DataTable已属于另外一个DataSet&amp;#8221;的错误。这时候我们需要建一个新的DataTable，并将原来的DataTable的结构及数据导入到新的DataTable中，这时候就可以使用下面的方法（当然方法并不是唯一的）：/**////&amp;lt...</summary><published>2007-03-07T10:49:00Z</published><updated>2007-03-07T10:49:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/03/07/667136.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/03/07/667136.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/02/06/642479.html</id><title type="text">IBatisNet + Castle 开发相关文章</title><summary type="text">近期一直使用IBatisNet和Castle(主要是IOC容器、Facility和事务管理)来做项目，慢慢的对它们有所了解并产生了浓厚的兴趣，现将园子里的朋友以及我本人所写的相关文章分类整理了一下，与大家分享，希望能有更多对Ibatisnet 、Castle感兴趣的朋友一起交流。为了交流能够更及时、畅通，我建了个专门用于讨论、交流IBatisNet + Castle开发问题的群(群号：2923364)，对此有兴趣或想了解、学习的都可以加入，大家一同进步!&#xD;另附上CodeSmith模版和例子源代码</summary><published>2007-02-06T10:48:00Z</published><updated>2007-02-06T10:48:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/02/06/642479.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/02/06/642479.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/02/05/641054.html</id><title type="text">[IBatisNet]关于返回DataTable的一点问题</title><summary type="text">对于IBatisnet执行查询返回DataTable，网上有很多代码，下面简单列出一下：&amp;#160;privateIDbCommandGetDbCommand(stringstatementName,objectparamObject){IStatementstatement=sqlMap.GetMappedStatement(statementName).Statement;IMappedSta...</summary><published>2007-02-05T11:04:00Z</published><updated>2007-02-05T11:04:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/02/05/641054.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/02/05/641054.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/02/01/636996.html</id><title type="text">深圳电话订票基本步骤及所有的取票点地址电话</title><summary type="text">订票流程：取票点：有没有到合肥的？</summary><published>2007-02-01T06:59:00Z</published><updated>2007-02-01T06:59:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/02/01/636996.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/02/01/636996.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/01/24/628866.html</id><title type="text">Automatic Transaction Management Facility 使用</title><summary type="text">需要引用的程序集： Castle.Facilities.AutomaticTransactionManagement Castle.Services.Transactions Castle.DynamicProxy Castle.Core 1、配置WindsorContainercontainer=newWindsorContainer(store);container.AddFacility("...</summary><published>2007-01-24T03:31:00Z</published><updated>2007-01-24T03:31:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/01/24/628866.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/01/24/628866.html"/></entry><entry><id>http://www.cnblogs.com/pw/archive/2007/01/24/628832.html</id><title type="text">IBatisnet Facility 的几种配置</title><summary type="text">1、代码container=newWindsorContainer(store);container.AddFacility("ibatis",newIBatisNetFacility());2、配置文件&amp;lt;facilities&amp;gt;&amp;lt;facilityid="ibatis"&amp;gt;&amp;lt;sqlMapid="sqlServerSqlMap"config="sqlMap.config"/...</summary><published>2007-01-24T03:14:00Z</published><updated>2007-01-24T03:14:00Z</updated><author><name>Daniel Pang</name><uri>http://www.cnblogs.com/pw/</uri></author><link rel="alternate" href="http://www.cnblogs.com/pw/archive/2007/01/24/628832.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/pw/archive/2007/01/24/628832.html"/></entry></feed>
