<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_ASP.NET 歪博2.0</title><subtitle type="text">得意时淡然，失意时泰然。</subtitle><id>http://feed.cnblogs.com/blog/u/26560/rss</id><updated>2007-09-25T03:51:44Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/26560/rss"/><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/28/762113.html</id><title type="text">AspNetPager分页控件--使用方法 2</title><summary type="text">二、三等代替。 &#xD;  ///  &#xD;  [Browsable(true), &#xD;  Category("导航按钮"), &#xD;  DefaultValue(false), &#xD;  Description("是否将页索引数值按钮用中文数字一、二、三等代替")] &#xD;  public bool ChinesePageIndex </summary><published>2007-05-28T01:59:00Z</published><updated>2007-05-28T01:59:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762113.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762113.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/28/762108.html</id><title type="text">AspNetPager分页控件--使用方法 1 </title><summary type="text">//此源代码仅供学习参考，不得用作任何商业用途； &#xD;  //若需修改并重新编译该控件，请保留完整的源代码的版权信息！ &#xD;  //有关控件升级及新控件发布信息，请留意 www.webdiyer.com 。 &#xD;  using System; &#xD;  using System.IO; &#xD;  using System.Web; &#xD;  using System.Web.UI; </summary><published>2007-05-28T01:57:00Z</published><updated>2007-05-28T01:57:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762108.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762108.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/28/762102.html</id><title type="text">分析ASP.NET服务器控件开发-控件生命周期</title><summary type="text">ASP.NET 2.0服务器控件开发----控件生命周期 &#xD;  服务器控件生命周期简介 &#xD;  　　服务器控件的生命周期是创建服务器控件最重要的概念。作为开发人员，必须对服务器控件生命周期深刻理解。当然，这不是一朝一夕就可以做到的。对于学习控件开发技术的初学者，可以不必掌握得非常详细深入，只需对服务器控件的生命周期中的不同阶段有一个大致的了解即可。 </summary><published>2007-05-28T01:55:00Z</published><updated>2007-05-28T01:55:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762102.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762102.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/28/762099.html</id><title type="text">用ObjectDataSource实现自定义分页的心得总结</title><summary type="text">在Web应用开发中列表的分页是难免要遇到的问题，在ASP.NET 2.0中微软为我们提供了很多数据源控件，如SqlDataSource、ObjectDataSource等，它们都可以实现默认分页，但是默认分页是在内存中实现的，用户量增大时Web服务器的负担会急剧增大，在多层体系结构程序开发中，往往把分页和排序的工作交给数据库服务器来完</summary><published>2007-05-28T01:54:00Z</published><updated>2007-05-28T01:54:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762099.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762099.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/28/762094.html</id><title type="text">DataTable操作中的性能问题</title><summary type="text">最近的一项工作是关于性能提升方面的。要做的第一个事情是要把很多同类型的DataTable合并到一起，查了很多关于DataTable的相关函数以后，我决定用Merge函数来合并这些DataTable。 &#xD;   DataTable[] srcTables = ... ; &#xD;   foreach( DataTable src in srcTables ) &#xD;   { &#xD;</summary><published>2007-05-28T01:52:00Z</published><updated>2007-05-28T01:52:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762094.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/28/762094.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/27/761344.html</id><title type="text">ASP.NET的 Session 详解4 </title><summary type="text">这种方式和以前ASP中的模式一样，就是服务器将Session信息存储在IIS进程中。当IIS关闭、重起后，这些信息都会丢失。但是这种模式也有自己最大好处，就是性能最高。应为所有的Session信息都存储在了IIS的进程中，所以IIS能够很快的访问到这些信息，这种模式的性能比进程外存储 Session信息或是在SQL Server中存储Session信息都要快上很多。这种模式也是ASP.NET的默认方式。 </summary><published>2007-05-27T02:04:00Z</published><updated>2007-05-27T02:04:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761344.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761344.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/27/761341.html</id><title type="text">ASP.NET的 Session 详解3 </title><summary type="text">在我们上面的Session模型简介中，大家可以发现Session状态应该存储在两个地方，分别是客户端和服务器端。客户端只负责保存相应网站的 SessionID，而其他的Session信息则保存在服务器端。在ASP中，客户端的SessionID实际是以Cookie的形式存储的。如果用户在浏览器的设置中选择了禁用Cookie，那末他也就无法享受Session的便利之处了，甚至造成不能访问某些网站。为了解决以上问题，在 ASP.NET中客户端的Session信息存储方式分为：Cookie和Cookieless两种。 &#xD;</summary><published>2007-05-27T02:02:00Z</published><updated>2007-05-27T02:02:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761341.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761341.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/27/761337.html</id><title type="text">ASP.NET的 Session 详解2</title><summary type="text">Web.config 有两种，分别是服务器配置文件和Web应用程序配置文件，他们都名为Web.config。在这个配置文件中会保存当前IIS服务器中网页的使用哪种语言编写的、应用程序安全认证模式、Session信息存储方式的一系列信息。这些信息是使用XML语法保存的，如果想对其编辑，使用文本编辑器就行了。 &#xD;</summary><published>2007-05-27T02:00:00Z</published><updated>2007-05-27T02:00:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761337.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761337.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/27/761335.html</id><title type="text">ASP.NET的 Session 详解1</title><summary type="text">Session模型简介 &#xD;   &#xD;  Session是什么呢？简单来说就是服务器给客户端的一个编号。当一台WWW服务器运行时，可能有若干个用户浏览正在运正在这台服务器上的网站。当每个用户首次与这台WWW服务器建立连接时，他就与这个服务器建立了一个Session，同时服务器会自动为其分配一个SessionID，用以标识这个用户的唯一身份。这个SessionID是由WWW服务器随机产生的一个由24个字符组成的字符串，我们会在下面的实验中见到它的实际样子。 </summary><published>2007-05-27T01:58:00Z</published><updated>2007-05-27T01:58:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761335.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/27/761335.html"/></entry><entry><id>http://www.cnblogs.com/think-jerry/archive/2007/05/25/759359.html</id><title type="text">ASP.NET的 MVC框架</title><summary type="text">你是否正在寻找适合您的.NET开发框架？&#xD;你是否是MVC结构的忠实拥护者？&#xD;&#xD;Mavrick.Net 是你最好的选择！&#xD; &#xD;  Mavrick.net 是Open source的.NET MVC框架软件，你可以通过&#xD;&#xD;http://mavnet.sourceforge.net/ 下载最新的版本及使用说明。&#xD;&#xD;</summary><published>2007-05-25T01:44:00Z</published><updated>2007-05-25T01:44:00Z</updated><author><name>Jerry.liu</name><uri>http://www.cnblogs.com/think-jerry/</uri></author><link rel="alternate" href="http://www.cnblogs.com/think-jerry/archive/2007/05/25/759359.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/think-jerry/archive/2007/05/25/759359.html"/></entry></feed>
