<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/xuchangwei" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/xuchangwei" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 07 Apr 2009 14:34:00 GMT</lastBuildDate><title>~~~徐长伟~~~</title><description>致力于ASP.NET研发</description><link>http://blog.csdn.net/xuchangwei/</link><item><title>C#中抽象类和接口的区别</title><link>http://blog.csdn.net/xuchangwei/archive/2009/04/07/4054187.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/4054187.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/4054187.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4054187</trackback:ping><description>      一、抽象类：&lt;br /&gt;      抽象类是特殊的类，只是不能被实例化；除此以外，具有类的其他特性；重要的是抽象类可以包括抽象方法，这是普通类所不能的。抽象方法只能声明于抽象类中，且不包含任何实现，派生类必须覆盖它们。另外，抽象类可以派生自一个抽象类，可以覆盖基类的抽象方法也可以不覆盖，如果不覆盖，则其派生类必须覆盖它们。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;       二、接口：&lt;br /&gt;      接口是引用类型的，类似于类,和抽象类的相似之处有三点：&lt;br /&gt;       1、不能实例化；&lt;br /&gt;       2、包含未实现的方法声明；&lt;br /&gt;       3、派生类必须实现未实现的方法，抽象类是抽象方法，接口则是所有成员（不仅是方法包括其他成员）；&lt;br /&gt;       另外，接口有如下特性：&lt;br /&gt;接口除了可以包含方法之外，还可以包含属性、索引器、事件，而且这些成员都被定义为公有的。除此之外，不能包含任何其他的成员，例如：常量、域、构造函数、析构函数、静态成员。一个类可以直接继承多个接口，但只能直接继承一个类（包括抽象类）。&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/4054187.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 07 Apr 2009 22:34:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2009/04/07/4054187.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2009/04/07/4054187.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2009/04/07/4054187.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264210/1295738</fs:itemid></item><item><title>分页查询</title><link>http://blog.csdn.net/xuchangwei/archive/2008/12/22/3580219.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/3580219.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/3580219.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3580219</trackback:ping><description>IF OBJECT_ID(N'dbo.p_show') IS NOT NULL&lt;br /&gt;    DROP PROCEDURE dbo.p_show&lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;/**//*--实现分页的通用存储过程&lt;br /&gt;&lt;br /&gt;    显示指定表、视图、查询结果的第X页&lt;br /&gt;    对于表中主键或标识列的情况,直接从原表取数查询，其它情况使用临时表的方法&lt;br /&gt;    如果视图或查询结果中有主键,不推荐此方法&lt;br /&gt;    如果使用查询语句,而且查询语句使用了order by,则查询语句必须包含top 语句&lt;br /&gt;&lt;br /&gt;最后更新时间: 2008.01.20&lt;br /&gt;--邹建 2003.09(引用请保留此信息)--*/&lt;br /&gt;&lt;br /&gt;/**//*--调用示例&lt;br /&gt;EXEC dbo.p_show &lt;br /&gt;    @QueryStr = N'tb',&lt;br /&gt;    @PageSize = 5,&lt;br /&gt;    @PageCurrent = 3,&lt;br /&gt;    @FdShow = 'id, colid, name',&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/3580219.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 22 Dec 2008 17:41:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2008/12/22/3580219.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2008/12/22/3580219.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2008/12/22/3580219.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264211/1295738</fs:itemid></item><item><title>C#日期格式化</title><link>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497253.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/3497253.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/3497253.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3497253</trackback:ping><description>日期转化一&lt;br /&gt;&lt;br /&gt;为了达到不同的显示效果有时，我们需要对时间进行转化，默认格式为：2007-01-03 14:33:34 ，要转化为其他格式，要用到DateTime.ToString的方法(String, IFormatProvider)，如下所示：&lt;br /&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Globalization;&lt;br /&gt;String format=&quot;D&quot;;&lt;br /&gt;DateTime date=DataTime,Now;&lt;br /&gt;Response.Write(date.ToString(format, DateTimeFormatInfo.InvariantInfo));&lt;br /&gt;&lt;br /&gt;结果输出&lt;br /&gt;Thursday, June 16, 2005&lt;br /&gt;&lt;br /&gt;参数format格式详细用法：&lt;br /&gt;&lt;br /&gt;格式字符 关联属性/说明 &lt;br /&gt;d ShortDatePattern &lt;br /&gt;D LongDatePattern &lt;br /&gt;f 完整日期和时间（长日期和短时间） &lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/3497253.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 11 Dec 2008 20:42:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497253.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497253.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497253.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264212/1295738</fs:itemid></item><item><title>VS2008快捷键参考</title><link>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497231.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/3497231.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/3497231.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3497231</trackback:ping><description>Ctrl+m+Crtr+o折叠所有大纲&lt;br /&gt;Ctrl+M+Crtr+P: 停止大纲显示&lt;br /&gt;Ctrl+K+Crtr+C: 注释选定内容&lt;br /&gt;Ctrl+K+Crtr+U: 取消选定注释内容&lt;br /&gt;Ctrl+J : 列出成员 智能感知Shift+Alt+Enter: 切换全屏编辑&lt;br /&gt;Ctrl+B,T / Ctrl+K,K: 切换书签开关&lt;br /&gt;Ctrl+B,N / Ctrl+K,N: 移动到下一书签 &lt;br /&gt;Ctrl+B,P: 移动到上一书签 &lt;br /&gt;Ctrl+B,C: 清除全部标签&lt;br /&gt;Ctrl+I: 渐进式搜索 &lt;br /&gt;Ctrl+Shift+I: 反向渐进式搜索 &lt;br /&gt;Ctrl+F: 查找 &lt;br /&gt;Ctrl+Shift+F: 在文件中查找 &lt;br /&gt;F3: 查找下一个 &lt;br /&gt;Shift+F3: 查找上一个 &lt;br /&gt;Ctrl+H: 替换 &lt;br /&gt;Ctrl+Shift+H: 在文件中替换 &lt;br /&gt;Alt+F12: 查找符号(列出所有查找结果)&lt;br /&gt;Ctrl+Shift+V: 剪贴板循环&lt;br /&gt;Ctr&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/3497231.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 11 Dec 2008 20:38:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497231.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497231.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2008/12/11/3497231.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264213/1295738</fs:itemid></item><item><title>利用CSS和javascript实现Google首页的动画效果</title><link>http://blog.csdn.net/xuchangwei/archive/2008/06/02/2504092.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/2504092.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/2504092.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2504092</trackback:ping><description>CSS,javascript,Google首页,动画效果&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/2504092.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 03 Jun 2008 01:29:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2008/06/02/2504092.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2008/06/02/2504092.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2008/06/02/2504092.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264214/1295738</fs:itemid></item><item><title>SQL Server根据汉字笔划和取得拼音首字母进行排序</title><link>http://blog.csdn.net/xuchangwei/archive/2008/01/25/2064946.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/2064946.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/2064946.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2064946</trackback:ping><description>SQL Server根据汉字笔划和取得拼音首字母进行排序&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/2064946.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 25 Jan 2008 19:39:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2008/01/25/2064946.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2008/01/25/2064946.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2008/01/25/2064946.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264215/1295738</fs:itemid></item><item><title>SQL Server 中易混淆的数据类型以及数据类型详解</title><link>http://blog.csdn.net/xuchangwei/archive/2007/12/10/1927115.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/1927115.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/1927115.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1927115</trackback:ping><description>SQL Server 中易混淆的数据类型以及数据类型详解&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/1927115.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 10 Dec 2007 22:12:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2007/12/10/1927115.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2007/12/10/1927115.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2007/12/10/1927115.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264216/1295738</fs:itemid></item><item><title>最便捷通用的可输入文字的下拉框</title><link>http://blog.csdn.net/xuchangwei/archive/2007/09/21/1794282.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/1794282.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/1794282.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1794282</trackback:ping><description>最便捷通用的可输入文字的下拉框&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/1794282.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Sep 2007 18:56:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2007/09/21/1794282.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2007/09/21/1794282.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2007/09/21/1794282.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264217/1295738</fs:itemid></item><item><title>万年历(纯Javascript)</title><link>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754089.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/1754089.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/1754089.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1754089</trackback:ping><description>万年历&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/1754089.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 22 Aug 2007 19:59:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754089.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754089.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754089.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264218/1295738</fs:itemid></item><item><title>强大功能的Javascript:验证身份证号码合法性</title><link>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754060.aspx</link><wfw:comment>http://blog.csdn.net/xuchangwei/comments/1754060.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/xuchangwei/comments/commentRss/1754060.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=1754060</trackback:ping><description>强大功能的Javascript:验证身份证号码合法性&lt;img src =&quot;http://blog.csdn.net/xuchangwei/aggbug/1754060.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 22 Aug 2007 19:42:00 +0800</pubDate><author>徐长伟</author><comments>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754060.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754060.aspx</guid><dc:creator>徐长伟</dc:creator><fs:srclink>http://blog.csdn.net/xuchangwei/archive/2007/08/22/1754060.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/xuchangwei/rss.aspx</fs:srcfeed><fs:itemid>csdn.net/xuchangwei/~1292915/206264219/1295738</fs:itemid></item></channel></rss>