<?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/14311/rss</id><updated>2007-06-19T14:54:01Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/14311/rss"/><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/11/15/276783.html</id><title type="text">初探触发器</title><summary type="text">这里只打算讲解四部分了，也就最简单、最常用的四部分。1、触发器。定义：何为触发器？在SQLServer里面也就是对某一个表的一定的操作，触发某种条件，从而执行的一段程序。触发器是一个特殊的存储过程。常见的触发器有三种：分别应用于Insert,Update,Delete事件。(SQLServer2000定义了新的触发器，这里不提）我为什么要使用触发器？比如，这么两个表：CreateTableStud...</summary><published>2005-11-15T05:50:00Z</published><updated>2005-11-15T05:50:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/11/15/276783.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/11/15/276783.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/11/14/276095.html</id><title type="text">  ASP.NET编程中的十大技巧 </title><summary type="text">ASP.NET编程中的十大技巧 2005-9-10 16:15:28 1、在使用Visual Studio .NET时，除直接或非引用的对象外，不要使用缺省的名字。  .NET带来的好处之一是所有的源代码和配置文件都是纯文本文件，能够使用Notepad或WordPad等任意的文本编辑器进行编辑。如果不愿意，我们并非一定要使用Visual Studio .NET作为集成开发环境。但使用了Visu...</summary><published>2005-11-14T08:37:00Z</published><updated>2005-11-14T08:37:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/11/14/276095.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/11/14/276095.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258519.html</id><title type="text">一个URL重写的例子 </title><summary type="text">打开 Global.asax.cs 在最上面添加一行 using System.Text.RegularExpressions;然后在 Application_BeginRequest 事件中写入stringstrRawUrl=HttpContext.Current.Request.RawUrl;stringstrNewUrl;if(Regex.IsMatch(strRawUrl,@"defaul...</summary><published>2005-10-20T08:11:00Z</published><updated>2005-10-20T08:11:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258519.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258519.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258517.html</id><title type="text">Singleton单例模式</title><summary type="text">使用对象时最基本的事情就是要首先创建对象的实例，一般情况下，这是一件极其简单的事情，就是用new运算符来创建某个对象的实例，简单的人们都不想提及。然而有时候你会发现创建对象的实例也不是那么简单。 比如有一些类，在整个程序运行期间只允许一个实例，或者我们说如果有多个实例存在程序逻辑会变得难以控制，很可能遭遇错误，比如对程序所需要的资源如连接池之类的做集中管理。  或者从逻辑上讲，在整个程序运行期间可...</summary><published>2005-10-20T08:08:00Z</published><updated>2005-10-20T08:08:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258517.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258517.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258516.html</id><title type="text">template method模式和strategy模式 </title><summary type="text">template method模式和strategy模式都是关注对象的行为的，按照依赖倒置的方法来分离抽象和具体的实现，但是两者的实现方法不同。template method模式应用了面向对象中继承的思想，而strategy模式则应用了委托的思想，从template method模式和strategy模式中也可以看到面向对象世界中abstract类和interface的异同。实际上这两种模式我们经...</summary><published>2005-10-20T08:07:00Z</published><updated>2005-10-20T08:07:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258516.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258516.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258507.html</id><title type="text">面向对象设计的基本原则 </title><summary type="text">Presentation草稿：面向对象设计的基本原则 设计的普遍规律，不只单讲如何设计类，向上到整个组件的设计，向下到类中单个方法的设计 单一职责原则——SRP就一个类而言，应该仅有一个引起它的变化的原因 原则最简单，最单纯的事情最容易控制，最有效类的职责简单而且集中，避免相同的职责分散到不同的类之中，避免一个类承担过多的职责减少类之间的耦合当需求变化时，只修改一个地方组件每个组件集中做好一件事情...</summary><published>2005-10-20T07:59:00Z</published><updated>2005-10-20T07:59:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258507.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/20/258507.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251505.html</id><title type="text">一款不错的打印监控软件</title><summary type="text">产品介绍为什么要使用打印监控成本控制系统？一、打印监控成本控制系统能使您的公司节约打印成本。 本系统能让您知道您公司的打印机每天的打印情况。从而有效防止打印耗材的浪费。二、打印监控成本控制系统能让您知道机密文档被谁在公司打印过。 本系统能让您知道打印作业具体是谁打印的。从而知道文档的流向。◎Spyprinter 打印监控成本控制V2.0将为您提供了全面的打印监控解决方案。◎Spyprinter 打...</summary><published>2005-10-10T03:26:00Z</published><updated>2005-10-10T03:26:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251505.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251505.html"/></entry><entry><id>http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251451.html</id><title type="text">dotnet数据库操作封装（sqlserver数据库）</title><summary type="text">数据库连接类型（sqlserverbaseclass）sqlserverbaseclass（string, string, string, string, string）sqlserverbaseclass（string, string, string, string）sqlserverbaseclass（string, string, string）sqlserverbaseclass（stri...</summary><published>2005-10-10T02:51:00Z</published><updated>2005-10-10T02:51:00Z</updated><author><name>娃娃鱼</name><uri>http://www.cnblogs.com/FARVEY141/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251451.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FARVEY141/archive/2005/10/10/251451.html"/></entry></feed>
