<?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/11826/rss</id><updated>2011-05-15T11:49:59Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/11826/rss"/><entry><id>http://www.cnblogs.com/tianhao960/archive/2007/06/03/769338.html</id><title type="text">页面传值</title><summary type="text">Session 会话l 区分客户端，不区分页面l 数据量会随着客户端（并发）数量的增多，而增多l 服务器端存储什么：数据存储在服务器端(InProc，StateServer，SqlServer)l 客户端存储什么：客户端存储的是SessionIDl 有过期策略l 适用场合：与用户相关的数据，购物车，用户帐号， Application状态l 全局数据，所有客户端共享：不区分客户端，不区分页面l 服务...</summary><published>2007-06-03T05:13:00Z</published><updated>2007-06-03T05:13:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2007/06/03/769338.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2007/06/03/769338.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/07/07/445625.html</id><title type="text">服务器控件生命周期</title><summary type="text">服务器控件的生命周期是创建服务器控件最重要的概念。作为开发人员，必须对服务器控件生命周期深刻理解。当然，这不是一朝一夕就可以做到的。对于学习控件开发技术的初学者，可以不必掌握得非常详细深入，只需对服务器控件的生命周期中的不同阶段有一个大致的了解即可。</summary><published>2006-07-07T15:34:00Z</published><updated>2006-07-07T15:34:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/445625.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/445625.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/07/07/445612.html</id><title type="text">ASP.NET 2.0页面框架的几处变化</title><summary type="text">新增的页面事件：在ASP.NET 2.0中，一个ASP.NET页面的生命周期主要为(红色字体表示ASP.NET 2.0新增加的阶段页面事件)：客户端请求页面—》预初始化(OnPreInit)—》初始化(OnInit)—》完成初始化(OnInitComplete)—》载入ViewState(LoadViewState)—》处理回送数据(IPostBackDataHandler)—》Page_OnPr...</summary><published>2006-07-07T15:28:00Z</published><updated>2006-07-07T15:28:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/445612.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/445612.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/07/07/444992.html</id><title type="text">序列化</title><summary type="text">.net的运行时环境用来支持用户定义类型的流化的机制。它是将对象实例的状态存储到存储媒体的过程。在此过程中，先将对象的公共字段和私有字段以及类的名称（包括类所在的程序集）转换为字节流，然后再把字节流写入数据流。在随后对对象进行反序列化时，将创建出与原对象完全相同的副本。&#xD;　　序列化的目的:&#xD;　　1、以某种存储形式使自定义对象持久化；&#xD;　　2、将对象从一个地方传递到另一个地方。</summary><published>2006-07-07T02:58:00Z</published><updated>2006-07-07T02:58:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/444992.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/07/07/444992.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/07/02/440907.html</id><title type="text">ASP.NET 2.0个性化配置（profile） </title><summary type="text">介绍&#xD;Microsoft ASP.NET 2.0支持被称为Profile的新对象，它可以自动在多个Web应用程序的访问之间存储用户信息。一个User Profile中可以存储各种类型的信息，这些信息既可以是简单的string和integer类型，也可以是复杂的自定义类型。例如，你可以存储用户的姓、购物篮、用户属性或网站使用情况统计。&#xD;本文中，你将学习如何在一个应用中定义user profile。我们也会向你演示如何配置使用不同provider的profile。最后，你将学习如何管理和生成user profile的报告。</summary><published>2006-07-02T10:31:00Z</published><updated>2006-07-02T10:31:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/07/02/440907.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/07/02/440907.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/06/29/438674.html</id><title type="text">韩乔生定律</title><summary type="text">宋世雄应该还是体育解说界的制高点吧。黄健翔加把劲，或许不久的将来能赶上前辈。&#xD;&#xD;查到韩老师经典语录，笑得人仰马翻，转录于此：&#xD;&#xD;根据广大球迷们总结出一条韩乔生定律：韩乔生在解说比赛时，眼睛里看着球员A，脑子里想起了球员B，嘴里说着球员C，实际指的是球员D，观众听以为是球员E。 好，现在开始。&#xD;</summary><published>2006-06-29T06:36:00Z</published><updated>2006-06-29T06:36:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/06/29/438674.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/06/29/438674.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/06/22/433255.html</id><title type="text">.net 中通用的formatstring格式符整理</title><summary type="text">格式化日期和数字的字符串经常要用到这个, 就把帮助里面的东西大概整理了一些列在这里了.</summary><published>2006-06-22T13:20:00Z</published><updated>2006-06-22T13:20:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/433255.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/433255.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/06/22/433069.html</id><title type="text">连接到 SQL Server 2005 时出现的问题</title><summary type="text">在建立与服务器的连接时出错。在连接到 SQL Server 2005 时，在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)</summary><published>2006-06-22T09:15:00Z</published><updated>2006-06-22T09:15:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/433069.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/433069.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/06/22/432620.html</id><title type="text">什么是VRML</title><summary type="text">     VRML是一种网页设计语言，你可以用它设计极其炫酷的三维网页，使用VRML设计的网页的效果是使用同等大小的HTML， Flash，或者其他什么什么现在正在流行的软件所制作的网页绝对不可比拟的。&#xD;</summary><published>2006-06-22T03:56:00Z</published><updated>2006-06-22T03:56:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/432620.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/06/22/432620.html"/></entry><entry><id>http://www.cnblogs.com/tianhao960/archive/2006/04/12/373669.html</id><title type="text">怪哉！天气！</title><summary type="text">南昌的天气还真怪，变天比我背英语单词的速度还快，多变的天气也造就了我感冒一个星期这么久还没好，害我冷水澡都不敢洗，太郁闷了！ 英语单词五本书已经过了两本了，还要再接再厉阿，争取在六月份前把单词都过一遍，然后看一下英语真题吧！这两天都在看新东方的阅读理解的考研视频，呵呵，讲师讲的不错，对考试来说是很有用的，也讲的很专业，讲师也很幽默，有很多收获！不过&amp;#8220;新东方&amp;#8221;这样的学校 估计...</summary><published>2006-04-12T13:45:00Z</published><updated>2006-04-12T13:45:00Z</updated><author><name>天浩</name><uri>http://www.cnblogs.com/tianhao960/</uri></author><link rel="alternate" href="http://www.cnblogs.com/tianhao960/archive/2006/04/12/373669.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/tianhao960/archive/2006/04/12/373669.html"/></entry></feed>
