<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_思路话语</title><subtitle type="text">。Arlen:思想有多远你就能走多远...</subtitle><id>http://feed.cnblogs.com/blog/u/17455/rss</id><updated>2010-08-18T05:44:51Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/17455/rss"/><entry><id>http://www.cnblogs.com/Arlen/archive/2009/08/04/1538931.html</id><title type="text">asp.net2.0运行时页面编译的跟踪分析</title><summary type="text">1.第一次访问某个目录下的页面：asp.net会将该目录下所有页面编译并产生到web服务器上的临时目录(类似如下路径：C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\项目名\b9135081\af48f820)。那么是不是意味着，如果想让用户打开首页的速度不慢，首页所在的目录下不应该放太多的页面呢？2.如果...</summary><published>2009-08-04T12:55:00Z</published><updated>2009-08-04T12:55:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/08/04/1538931.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/08/04/1538931.html"/><content type="text">1.第一次访问某个目录下的页面：asp.net会将该目录下所有页面编译并产生到web服务器上的临时目录(类似如下路径：C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\项目名\b9135081\af48f820)。那么是不是意味着，如果想让用户打开首页的速度不慢，首页所在的目录下不应该放太多的页面呢？2.如果...</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/04/22/1441606.html</id><title type="text">马化腾简历</title><summary type="text">人物简介1971年10月出生于广东潮阳。1984年随父母从海南迁至深圳。1989年-1993年，就读于深圳大学计算机专业。1993年深大毕业，进入润迅通信发展有限公司，从专注于寻呼软件开发的软件工程师一直做到开发部主管。1998年，创办腾讯计算机系统有限公司。马化腾，腾讯公司执行董事、董事会主席兼本公司首席执行官(ceo)，全面负责本集团的策略规划、定位和管理。是主要创办人之一，自一九九九年起受雇...</summary><published>2009-04-22T13:09:00Z</published><updated>2009-04-22T13:09:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/04/22/1441606.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/04/22/1441606.html"/><content type="text">人物简介1971年10月出生于广东潮阳。1984年随父母从海南迁至深圳。1989年-1993年，就读于深圳大学计算机专业。1993年深大毕业，进入润迅通信发展有限公司，从专注于寻呼软件开发的软件工程师一直做到开发部主管。1998年，创办腾讯计算机系统有限公司。马化腾，腾讯公司执行董事、董事会主席兼本公司首席执行官(ceo)，全面负责本集团的策略规划、定位和管理。是主要创办人之一，自一九九九年起受雇...</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/03/13/1410843.html</id><title type="text">DataTable.Merge 时出现DataType不致 int32 int64</title><summary type="text">DataTable1的sql:select distinct a.*,t.id as serverid,b.id as deptid,....DataTable2的sql:select distinct a.*,0 as serverid, 32 as deptid,...在调用dt1.Merge(dt2)的时候，由于两个serverid字段类型不一致，一个int32,一个int64，导致无法Me...</summary><published>2009-03-13T07:56:00Z</published><updated>2009-03-13T07:56:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/03/13/1410843.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/03/13/1410843.html"/><content type="text">DataTable1的sql:select distinct a.*,t.id as serverid,b.id as deptid,....DataTable2的sql:select distinct a.*,0 as serverid, 32 as deptid,...在调用dt1.Merge(dt2)的时候，由于两个serverid字段类型不一致，一个int32,一个int64，导致无法Me...</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/03/12/1409689.html</id><title type="text">sql 计算子字符串在父字符串中出现次数的一个非常简单的办法</title><summary type="text">select length(sn)-length(replace(sn,',','')) from ...update ads_netdevice_info set islogic=length(sn)-length(replace(sn,',',''))+1</summary><published>2009-03-12T07:30:00Z</published><updated>2009-03-12T07:30:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/03/12/1409689.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/03/12/1409689.html"/><content type="text">select length(sn)-length(replace(sn,',','')) from ...update ads_netdevice_info set islogic=length(sn)-length(replace(sn,',',''))+1</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/01/21/1379504.html</id><title type="text">silver light网站收集</title><summary type="text">http://www.challenges.com.cn/http://www.microsoft.com/china/windowsserver2008/serverunleashed/default.html</summary><published>2009-01-21T07:23:00Z</published><updated>2009-01-21T07:23:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/01/21/1379504.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/01/21/1379504.html"/><content type="text">http://www.challenges.com.cn/http://www.microsoft.com/china/windowsserver2008/serverunleashed/default.html</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/01/21/1379315.html</id><title type="text">20个免费的SEO网站分析工具</title><summary type="text">http://blog.bingo929.com/20-free-page-seo-analysis-tools.html</summary><published>2009-01-21T02:31:00Z</published><updated>2009-01-21T02:31:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/01/21/1379315.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/01/21/1379315.html"/><content type="text">http://blog.bingo929.com/20-free-page-seo-analysis-tools.html</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/01/20/1379081.html</id><title type="text">flex asp.net</title><summary type="text">http://www.cnblogs.com/chu888chu888/archive/2008/07/10/1239760.html</summary><published>2009-01-20T10:33:00Z</published><updated>2009-01-20T10:33:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/01/20/1379081.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/01/20/1379081.html"/><content type="text">http://www.cnblogs.com/chu888chu888/archive/2008/07/10/1239760.html</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2009/01/02/1367054.html</id><title type="text">软件开发人员能力模型</title><summary type="text">最高层：过程控制和管理 第三层：方法、思想和理论 第二层：具体技术、语言和工具 最底层：基础原理、基础知识 最底层是基础原理和基本技术：包括计算机原理、电路、数据结构、数据库原理、编译原理、操作系统等。这些知识是很基础的有了一定的基础才能更好的学习其它能力第二层是具体技术、语言和工具，包括各种编程语言、开发环境、数据库、开发框架等。每显然，一般情况下要学习第二层的内容必须要有以最底层的能力为基础，...</summary><published>2009-01-02T10:15:00Z</published><updated>2009-01-02T10:15:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2009/01/02/1367054.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2009/01/02/1367054.html"/><content type="text">最高层：过程控制和管理 第三层：方法、思想和理论 第二层：具体技术、语言和工具 最底层：基础原理、基础知识 最底层是基础原理和基本技术：包括计算机原理、电路、数据结构、数据库原理、编译原理、操作系统等。这些知识是很基础的有了一定的基础才能更好的学习其它能力第二层是具体技术、语言和工具，包括各种编程语言、开发环境、数据库、开发框架等。每显然，一般情况下要学习第二层的内容必须要有以最底层的能力为基础，...</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2008/12/03/1346657.html</id><title type="text">asp.net中webservice请求发送原理和过程的初步分析[原]</title><summary type="text">需求：作为服务方，需要监控每个调用webservice的客户端。需要监控的信息大致如下：客户端的ip,客户端调用了哪个类的哪个方法。于是自己花了点时间对asp.net的webservice机制作了一下探索。解决方案：在接口项目中编写一个所有webservice接口的基类，在此基类的构造方法中，通过分析HttpContext.Current.Request得到想要的信息。1.ip可以通过HttpCo...</summary><published>2008-12-03T05:42:00Z</published><updated>2008-12-03T05:42:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2008/12/03/1346657.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2008/12/03/1346657.html"/><content type="text">需求：作为服务方，需要监控每个调用webservice的客户端。需要监控的信息大致如下：客户端的ip,客户端调用了哪个类的哪个方法。于是自己花了点时间对asp.net的webservice机制作了一下探索。解决方案：在接口项目中编写一个所有webservice接口的基类，在此基类的构造方法中，通过分析HttpContext.Current.Request得到想要的信息。1.ip可以通过HttpCo...</content></entry><entry><id>http://www.cnblogs.com/Arlen/archive/2008/11/24/1339784.html</id><title type="text">mysql null问题续</title><summary type="text">上回说到group_concat和concat的时候，如果有列值为null，则concat后为null。现在发现另一个问题，如果有列A为null，而另一列B为空''，那么A&lt;&gt;B与A=B的记录条数之和不等于总数。也就是说，如果列A为null,列B为空''，那么mysql是不会比较它们的，即这种情况既不属于相等，也不属于不相等。解决办法就是用ifnull（sqlserver是isnull...</summary><published>2008-11-24T03:45:00Z</published><updated>2008-11-24T03:45:00Z</updated><author><name>Arlen</name><uri>http://www.cnblogs.com/Arlen/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Arlen/archive/2008/11/24/1339784.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Arlen/archive/2008/11/24/1339784.html"/><content type="text">上回说到group_concat和concat的时候，如果有列值为null，则concat后为null。现在发现另一个问题，如果有列A为null，而另一列B为空''，那么A&lt;&gt;B与A=B的记录条数之和不等于总数。也就是说，如果列A为null,列B为空''，那么mysql是不会比较它们的，即这种情况既不属于相等，也不属于不相等。解决办法就是用ifnull（sqlserver是isnull...</content></entry></feed>
