从零开始<--->从新开始

老老实实做人,踏踏实实做事--记录成长中的一点一滴

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2007年8月5日

摘要: 文章出处:http://asp.net/ajax/documentation/live/overview/ScriptManagerOverview.aspx Introduction The ScriptManager control manages client script for Microsoft ASP.NET AJAX pages. By default, the ScriptM... 阅读全文
posted @ 2007-08-05 21:15 baixve 阅读(571) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/ajax/documentation/live/tutorials/TimerControlTutorials.aspx Introduction The topics in this section provide examples of using the Timer control on an ASP.NET Web page to refresh ... 阅读全文
posted @ 2007-08-05 21:12 baixve 阅读(177) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/ajax/documentation/live/overview/UsingTimerControlTutorial.aspx Introduction The Timer control performs postbacks at defined intervals. If you use the Timer control with an Updat... 阅读全文
posted @ 2007-08-05 21:08 baixve 阅读(338) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/ajax/documentation/live/tutorials/UpdateProgressTutorials.aspx Introduction The topics in this section provide examples of using the UpdateProgress control to display status duri... 阅读全文
posted @ 2007-08-05 21:06 baixve 阅读(142) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/ajax/documentation/live/overview/UpdateProgressOverview.aspx Introduction The UpdateProgress control provides status information about partial-page updates in UpdatePanel control... 阅读全文
posted @ 2007-08-05 21:05 baixve 阅读(332) 评论(0) 推荐(0) 编辑

摘要: 文章出处: http://asp.net/ajax/documentation/live/tutorials/UpdatePanelTutorials.aspx Introduction The topics in this section provide examples of how to use the UpdatePanel control to enable partial-page r... 阅读全文
posted @ 2007-08-05 21:03 baixve 阅读(186) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/ajax/documentation/live/overview/UpdatePanelOverview.aspx Introduction ASP.NET UpdatePanel controls enable you to build rich, client-centric Web applications. By using UpdatePane... 阅读全文
posted @ 2007-08-05 21:01 baixve 阅读(460) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/tutorials/IntroToTimerControl.aspx Introduction In this tutorial you will update part of a Web page at a timed interval by using three Microsoft ASP.NET 2... 阅读全文
posted @ 2007-08-05 00:45 baixve 阅读(203) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/tutorials/IntroductionUpdateProgress.aspx Introduction In this tutorial you will use UpdateProgress controls to display the progress of partial-page updat... 阅读全文
posted @ 2007-08-05 00:44 baixve 阅读(193) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/tutorials/IntroductionUpdatePanel.aspx Introduction In this tutorial you will add partial-page update support to a Web page by using two Microsoft ASP.NET... 阅读全文
posted @ 2007-08-05 00:43 baixve 阅读(239) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/tutorials/CreateSimpleAJAXApplication.aspx Introduction This tutorial creates a basic sample application that uses features of Microsoft ASP.NET AJAX. You... 阅读全文
posted @ 2007-08-05 00:41 baixve 阅读(237) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/InstallingASPNETAJAX.aspx Introduction This topic describes how to install Microsoft ASP.NET AJAX. It also describes how to install the optional ASP.NET 2... 阅读全文
posted @ 2007-08-05 00:37 baixve 阅读(256) 评论(0) 推荐(0) 编辑

摘要: 文章出处:http://asp.net/AJAX/Documentation/Live/overview/default.aspx ASP.NET AJAX Overview Introduction Microsoft ASP.NET AJAX enables you to quickly create Web pages that include a rich user experien... 阅读全文
posted @ 2007-08-05 00:25 baixve 阅读(287) 评论(0) 推荐(0) 编辑

2007年8月2日

摘要: 概述 在软件系统中,有时候面临着“一个复杂对象”的创建工作,其通常由各个部分的子对象用一定的算法构成;由于需求的变化,这个复杂对象的各个部分经常面临着剧烈的变化,但是将它们组合在一起的算法确相对稳定。如何应对这种变化?如何提供一种“封装机制”来隔离出“复杂对象的各个部分”的变化,从而保持系统中的“稳定构建算法”不随着需求改变而改变?这就是要说的建造者模式。 本文通过现实生活中的买KFC的例子,用图... 阅读全文
posted @ 2007-08-02 23:45 baixve 阅读(405) 评论(0) 推荐(0) 编辑

2007年7月31日

摘要: 概述 在软件系统中,经常面临着“一系列相互依赖的对象”的创建工作;同时由于需求的变化,往往存在着更多系列对象的创建工作。如何应对这种变化?如何绕过常规的对象的创建方法(new),提供一种“封装机制”来避免客户程序和这种“多系列具体对象创建工作”的紧耦合?这就是我们要说的抽象工厂模式。 意图 提供一个创建一系列相关或相互依赖对象的接口,而无需指定它们具体的类。 模型图 逻辑模型: 物理模型: 生... 阅读全文
posted @ 2007-07-31 21:57 baixve 阅读(279) 评论(0) 推荐(0) 编辑