<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_天高云淡</title><subtitle type="text">金鱼之博（聪明做事，低调做人。上智者必不自智，下愚者比不自愚。沉稳而不失激情，成功而不忘超越）</subtitle><id>http://feed.cnblogs.com/blog/u/26891/rss</id><updated>2010-08-04T01:53:52Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/26891/rss"/><entry><id>http://www.cnblogs.com/morningwang/archive/2009/03/19/1417224.html</id><title type="text">2009年阅读的图书</title><summary type="text">1.沈渔 &lt;&lt;朝九晚五&gt;&gt;2.林锐 &lt;&lt;软件工程思想&gt;&gt; 电子版3.王涛 &lt;&lt;你必须知道的.NET&gt;&gt;4.冯仑 &lt;&lt;野蛮生长&gt;&gt;5.绝影 &lt;&lt;疯狂的程序员&gt;&gt;6.程杰 &lt;&lt;大话设计模式&gt;&gt; 正在读...7.阿朱 &lt;&lt;走出软件作坊&gt;&gt;...</summary><published>2009-03-19T15:12:00Z</published><updated>2009-03-19T15:12:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2009/03/19/1417224.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2009/03/19/1417224.html"/><content type="text">1.沈渔 &lt;&lt;朝九晚五&gt;&gt;2.林锐 &lt;&lt;软件工程思想&gt;&gt; 电子版3.王涛 &lt;&lt;你必须知道的.NET&gt;&gt;4.冯仑 &lt;&lt;野蛮生长&gt;&gt;5.绝影 &lt;&lt;疯狂的程序员&gt;&gt;6.程杰 &lt;&lt;大话设计模式&gt;&gt; 正在读...7.阿朱 &lt;&lt;走出软件作坊&gt;&gt;...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2009/01/02/1367277.html</id><title type="text">SQL分页语句</title><summary type="text">有关分页 SQL 的资料很多，有的使用存储过程，有的使用游标。本人不喜欢使用游标，我觉得它耗资、效率低；使用存储过程是个不错的选择，因为存储过程是经过预编译的，执行效率高，也更灵活。先看看单条 SQL 语句的分页 SQL 吧。方法1：适用于 SQL Server 2000/2005SELECTTOP页大小*FROMtable1WHEREidNOTIN(SELECTTOP页大小*(页数-1) idF...</summary><published>2009-01-02T14:41:00Z</published><updated>2009-01-02T14:41:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2009/01/02/1367277.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2009/01/02/1367277.html"/><content type="text">有关分页 SQL 的资料很多，有的使用存储过程，有的使用游标。本人不喜欢使用游标，我觉得它耗资、效率低；使用存储过程是个不错的选择，因为存储过程是经过预编译的，执行效率高，也更灵活。先看看单条 SQL 语句的分页 SQL 吧。方法1：适用于 SQL Server 2000/2005SELECTTOP页大小*FROMtable1WHEREidNOTIN(SELECTTOP页大小*(页数-1) idF...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/10/10/1308325.html</id><title type="text">const和readonly区别</title><summary type="text">内容来源&lt;&lt;你必须知道的.NET&gt;&gt;标题：什么才是不变：const和readonly时间：2008-10-10内容： 我们都知道，const和static readonly的确很像：通过类名而不是对象名进行访问，在程序中只读等等。在多数情况下可以混用。二者本质的区别在于，const的值是在编译期间确定的，因此只能在声明时通过常量表达式指定其值。而static readonl...</summary><published>2008-10-10T09:56:00Z</published><updated>2008-10-10T09:56:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/10/10/1308325.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/10/10/1308325.html"/><content type="text">内容来源&lt;&lt;你必须知道的.NET&gt;&gt;标题：什么才是不变：const和readonly时间：2008-10-10内容： 我们都知道，const和static readonly的确很像：通过类名而不是对象名进行访问，在程序中只读等等。在多数情况下可以混用。二者本质的区别在于，const的值是在编译期间确定的，因此只能在声明时通过常量表达式指定其值。而static readonl...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/09/22/1295710.html</id><title type="text">jQuery使用说明</title><summary type="text">jQuery是一款同prototype一样优秀js开发库类，特别是对css和XPath的支持，使我们写js变得更加方便！如果你不是个js高手又想写出优 秀的js效果，jQuery可以帮你达到目的！ 下载地址：Starterkit （http://jquery.bassistance.de/jquery-starterkit.zip） jQuery Downloads （http://jquery....</summary><published>2008-09-22T03:06:00Z</published><updated>2008-09-22T03:06:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/09/22/1295710.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/09/22/1295710.html"/><content type="text">jQuery是一款同prototype一样优秀js开发库类，特别是对css和XPath的支持，使我们写js变得更加方便！如果你不是个js高手又想写出优 秀的js效果，jQuery可以帮你达到目的！ 下载地址：Starterkit （http://jquery.bassistance.de/jquery-starterkit.zip） jQuery Downloads （http://jquery....</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/09/18/1293032.html</id><title type="text">(转)Web页面中常用到的广告效果</title><summary type="text">ASP.NET 项目中用到的广告效果 在ASP.NET项目开发中,会被要求添加广告,有翻屏效果、有广告轮流显示、飘浮广告、左侧广告、右侧广告等。用本贴持续记录一些收集的广告效果。希望给有需求的朋友们一些支持。也希望朋友们把我未记录的广告形式也给予一起回贴。使本贴更加的完善，也让更多的朋友们分享。1.翻屏效果[代码]2.广告轮显[代码]3.流动广告[代码]4.移动广告框[代码]5.左右底部广告[代码...</summary><published>2008-09-18T01:41:00Z</published><updated>2008-09-18T01:41:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/09/18/1293032.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/09/18/1293032.html"/><content type="text">ASP.NET 项目中用到的广告效果 在ASP.NET项目开发中,会被要求添加广告,有翻屏效果、有广告轮流显示、飘浮广告、左侧广告、右侧广告等。用本贴持续记录一些收集的广告效果。希望给有需求的朋友们一些支持。也希望朋友们把我未记录的广告形式也给予一起回贴。使本贴更加的完善，也让更多的朋友们分享。1.翻屏效果[代码]2.广告轮显[代码]3.流动广告[代码]4.移动广告框[代码]5.左右底部广告[代码...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/09/11/1289095.html</id><title type="text">接口和抽象类</title><summary type="text">内容来源&lt;&lt;你必须知道的.NET&gt;&gt;标题：面向对象编程：接口和抽象类时间：2008-09-11内容：概念：1.接口--接口是包含一组虚方法的抽象类型，其中每一种方法都有其名称，返回类型和参数；接口方法不能包括任何实现； 当一个类可以实现多个接口时，不仅要实现该接口的所有方法，而且还有实现该接口从其他接口中继承的所有方法。2.抽象类--抽象类提供多个派生类共享类的公共定义，它...</summary><published>2008-09-11T06:24:00Z</published><updated>2008-09-11T06:24:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/09/11/1289095.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/09/11/1289095.html"/><content type="text">内容来源&lt;&lt;你必须知道的.NET&gt;&gt;标题：面向对象编程：接口和抽象类时间：2008-09-11内容：概念：1.接口--接口是包含一组虚方法的抽象类型，其中每一种方法都有其名称，返回类型和参数；接口方法不能包括任何实现； 当一个类可以实现多个接口时，不仅要实现该接口的所有方法，而且还有实现该接口从其他接口中继承的所有方法。2.抽象类--抽象类提供多个派生类共享类的公共定义，它...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/09/08/1286982.html</id><title type="text">在ASP.NET中重写URL </title><summary type="text">【原文地址】Tip/Trick: Url Rewriting with ASP.NET 经常有人请我指导应该如何动态地“重写”URL，以在他们的ASP.NETweb应用中发布比较干净的URL端点。这个博客帖子概述了几个方法，你可以用来在ASP.NET中干净地映射或重写URL，以及按照你自己的需求组织你的URL的结构。 为什么URL映射和重写很重要？下面是开发人员想要对URL...</summary><published>2008-09-08T09:59:00Z</published><updated>2008-09-08T09:59:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/09/08/1286982.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/09/08/1286982.html"/><content type="text">【原文地址】Tip/Trick: Url Rewriting with ASP.NET 经常有人请我指导应该如何动态地“重写”URL，以在他们的ASP.NETweb应用中发布比较干净的URL端点。这个博客帖子概述了几个方法，你可以用来在ASP.NET中干净地映射或重写URL，以及按照你自己的需求组织你的URL的结构。 为什么URL映射和重写很重要？下面是开发人员想要对URL...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/08/23/1274850.html</id><title type="text">你必须知道的社会生活中十大著名法则</title><summary type="text">一、 马太效应 二、 手表定理 三、 不值得定律 四、 彼得原理 五、 零和游戏原理 六、 华盛顿合作规律 七、 酒与污水定律 八、 水桶定律 九、 蘑菇管理 十、 奥卡姆剃刀定律 一、马太效应 《新约马太福音》中有这样一个故事，一个国王远行前，交给三个仆人每人一锭银子，吩咐他们： " 你们去做生意，等我回来时，再来见我。 " 国王回来时，第一个仆人说： " 主人，你交给我们的一锭银子，我已赚...</summary><published>2008-08-23T14:40:00Z</published><updated>2008-08-23T14:40:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/08/23/1274850.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/08/23/1274850.html"/><content type="text">一、 马太效应 二、 手表定理 三、 不值得定律 四、 彼得原理 五、 零和游戏原理 六、 华盛顿合作规律 七、 酒与污水定律 八、 水桶定律 九、 蘑菇管理 十、 奥卡姆剃刀定律 一、马太效应 《新约马太福音》中有这样一个故事，一个国王远行前，交给三个仆人每人一锭银子，吩咐他们： " 你们去做生意，等我回来时，再来见我。 " 国王回来时，第一个仆人说： " 主人，你交给我们的一锭银子，我已赚...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/08/21/1273225.html</id><title type="text">静态与非静态的区别</title><summary type="text">最近一直在看&lt;&lt;你必须知道的.NET&gt;&gt;一书，感觉挺不错，现在把一些内容记录如下：标题：静动之间：静态和非静态时间：2008-08-21 内容：1.静态类与非静态类●.静态类中只能包含静态成员和静态方法，否则会抛出编译错误； 而非静态类中可以包含非静态成员和非静态方法，也可以包含 静态成员和静态方法；●.静态类不可以实例化；非静态类可以实例化。不管是静态类还是 非静态类，对...</summary><published>2008-08-21T07:02:00Z</published><updated>2008-08-21T07:02:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/08/21/1273225.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/08/21/1273225.html"/><content type="text">最近一直在看&lt;&lt;你必须知道的.NET&gt;&gt;一书，感觉挺不错，现在把一些内容记录如下：标题：静动之间：静态和非静态时间：2008-08-21 内容：1.静态类与非静态类●.静态类中只能包含静态成员和静态方法，否则会抛出编译错误； 而非静态类中可以包含非静态成员和非静态方法，也可以包含 静态成员和静态方法；●.静态类不可以实例化；非静态类可以实例化。不管是静态类还是 非静态类，对...</content></entry><entry><id>http://www.cnblogs.com/morningwang/archive/2008/07/15/1243737.html</id><title type="text">.net开发人员应该必备的十种工具（新/旧对比）</title><summary type="text">开发人员应该下载的十种软件工具：用于编写单元测试的 NUnithttp://sourceforge.net/projects/nunitaddin用于创建代码文档资料的 NDoc http://ndoc.sourceforge.net用于生成解决方案的 NAnt http://nant.sourceforge.net用于生成代码的 CodeSmith用于监视代码的 FxCop http://www...</summary><published>2008-07-15T15:50:00Z</published><updated>2008-07-15T15:50:00Z</updated><author><name>金鱼</name><uri>http://www.cnblogs.com/morningwang/</uri></author><link rel="alternate" href="http://www.cnblogs.com/morningwang/archive/2008/07/15/1243737.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/morningwang/archive/2008/07/15/1243737.html"/><content type="text">开发人员应该下载的十种软件工具：用于编写单元测试的 NUnithttp://sourceforge.net/projects/nunitaddin用于创建代码文档资料的 NDoc http://ndoc.sourceforge.net用于生成解决方案的 NAnt http://nant.sourceforge.net用于生成代码的 CodeSmith用于监视代码的 FxCop http://www...</content></entry></feed>
