<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_yanger</title><subtitle type="text">yanger</subtitle><id>http://feed.cnblogs.com/blog/u/28973/rss</id><updated>2009-10-14T06:12:37Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/28973/rss"/><entry><id>http://www.cnblogs.com/yanger/archive/2009/10/13/1582592.html</id><title type="text">服务安装小工具</title><summary type="text">Exe运行程序Code 源码 class ServiceInstaller { #region Private Variables //private string _servicePath; //private string _serviceName; //private string _serviceDisplayName; #endregion //Private Variables #re...</summary><published>2009-10-13T08:38:00Z</published><updated>2009-10-13T08:38:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2009/10/13/1582592.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2009/10/13/1582592.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2009/10/13/1582576.html</id><title type="text">简单封装My97Date日期控件</title><summary type="text">[代码]public enum DateSkin { defaultSkin, whyGreenSkin, extSkin }</summary><published>2009-10-13T08:21:00Z</published><updated>2009-10-13T08:21:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2009/10/13/1582576.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2009/10/13/1582576.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2009/02/02/1382471.html</id><title type="text">通过SQL 2005 系统表监控 SQL Server 的运行状况 </title><summary type="text">Microsoft SQL Server 2005 提供了一些工具来监控数据库。方法之一是动态管理视图。动态管理视图 (DMV) 和动态管理函数 (DMF) 返回的服务器状态信息可用于监控服务器实例的运行状况、诊断问题和优化性能。常规服务器动态管理对象包括： dm_db_*：数据库和数据库对象 dm_exec_*：执行用户代码和关联的连接 dm_os_*：内存、锁定和时间安排 dm_tran_*：...</summary><published>2009-02-02T06:37:00Z</published><updated>2009-02-02T06:37:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2009/02/02/1382471.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2009/02/02/1382471.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/12/23/1360275.html</id><title type="text"> 如何让你的SQL运行得更快</title><summary type="text">人们在使用SQL时往往会陷入一个误区，即太关注于所得的结果是否正确，而忽略了不同的实现方法之间可能存在的性能差异，这种性能差异在大型的或是复杂的数据库环境中（如联机事务处理OLTP或决策支持系统DSS）中表现得尤为明显。笔者在工作实践中发现，不良的SQL往往来自于不恰当的索引设计、不充份的连接条件和不可优化的where子句。在对它们进行适当的优化后，其运行速度有了明显地提高！下面我将从这三个方面分...</summary><published>2008-12-23T02:02:00Z</published><updated>2008-12-23T02:02:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/12/23/1360275.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/12/23/1360275.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/02/25/1079945.html</id><title type="text">悟透JavaScript</title><summary type="text">悟透JavaScript引子 编程世界里只存在两种基本元素，一个是数据，一个是代码。编程世界就是在数据和代码千丝万缕的纠缠中呈现出无限的生机和活力。数据天生就是文静的，总想保持自己固有的本色；而代码却天生活泼，总想改变这个世界。 你看，数据代码间的关系与物质能量间的关系有着惊人的相似。数据也是有惯性的，如果没有代码来施加外力，她总保持自己原来的状态。而代码就象能量，他存在的唯一目的，就是要努力改变...</summary><published>2008-02-24T16:31:00Z</published><updated>2008-02-24T16:31:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/02/25/1079945.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/02/25/1079945.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/02/07/1065633.html</id><title type="text">分布式缓存系统Memcached简介与实践 </title><summary type="text">分布式缓存系统Memcached简介与实践 缘起: 在数据驱动的web开发中，经常要重复从数据库中取出相同的数据，这种重复极大的增加了数据库负载。缓存是解决这个问题的好办法。但是ASP.NET中的虽然已经可以实现对页面局部进行缓存，但还是不够灵活。此时Memcached或许是你想要的。Memcached是什么?Memcached是由Danga Interactive开发的，高性能的，分布式的内存对...</summary><published>2008-02-07T03:11:00Z</published><updated>2008-02-07T03:11:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/02/07/1065633.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/02/07/1065633.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/02/07/1065631.html</id><title type="text">indeXus.Net Shared Cache - 高性能，分布式缓存方案 </title><summary type="text">昨天在codeplex.com上闲逛，偶遇到个好东西，提来给大家拜年。-----------------------------------------------------------------------------------------一、简介indeXus.Net SharedCache是高性能的、分布式的内存对象系统，用于在动态WEB或Win应用程序中减少数据库的负责，提高访问速度...</summary><published>2008-02-07T03:09:00Z</published><updated>2008-02-07T03:09:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/02/07/1065631.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/02/07/1065631.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/01/24/1052152.html</id><title type="text">NET脏字过滤算法 </title><summary type="text">我们网站的脏字字典中大概有600多个词，而且会发生变化，因此简单的在数据新增/修改的时候做一次脏字过滤是不够的。在网站从.NET 1.1到2.0改版的时候，对新版的测试发现旧的脏字过滤算法耗费的时间过长，需要做一些优化。旧的算法是简单对每一个脏字调用一遍 string.replace，当然是用了StringBuilder。在cnblogs里发现了一篇讨论脏字过滤的blog http://www.c...</summary><published>2008-01-24T14:04:00Z</published><updated>2008-01-24T14:04:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/01/24/1052152.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/01/24/1052152.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2008/01/03/1023935.html</id><title type="text">VS2008 椭圆曲线签名(ECDSA) </title><summary type="text">VS2008 椭圆曲线签名(ECDSA)  椭圆曲线签名(ECDSA)相对传统签名算法具有速度快、强度高、签名短等优点。VS2008 中提供了椭圆曲线签名(ECDSA)，遗憾的是 VS2008 提供的椭圆曲线签名目前只能在 Windwos Vista 上使用。 椭圆曲线签名(ECDSA)的工作原理与大多数签名算法类似，都是使用私钥进行签名，使用公钥进行验证。其模式与其他托管加密类相同，只是椭圆曲线...</summary><published>2008-01-03T00:35:00Z</published><updated>2008-01-03T00:35:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2008/01/03/1023935.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2008/01/03/1023935.html"/></entry><entry><id>http://www.cnblogs.com/yanger/archive/2007/10/16/926273.html</id><title type="text">ASP.NET 中处理页面“回退”的方法 </title><summary type="text">我们在编写基于ASP.NET 的应用程序时，如果代码执行出错或检测到异常，一般会提示用户&amp;#8220;返回&amp;#8221;或&amp;#8220;回退&amp;#8221;，或者在多步操作、列表/详细的查看界面中，也会给用户提供回退到上一页面的链接，对于这种情况，大家很快就会想到的简单做法就是利用 Javascript 来实现，即 history.go(-1) ，但是由于 ASP.NET 页面的 PostBack ...</summary><published>2007-10-16T07:49:00Z</published><updated>2007-10-16T07:49:00Z</updated><author><name>高度</name><uri>http://www.cnblogs.com/yanger/</uri></author><link rel="alternate" href="http://www.cnblogs.com/yanger/archive/2007/10/16/926273.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/yanger/archive/2007/10/16/926273.html"/></entry></feed>
