分享
 
 
 

《AJAX 4使用Visual C# 2010:服务器端 视频教程》(AppDev AJAX 4 Using Visual C Sharp2010 Server Side)[光盘镜像]

王朝资源·作者佚名  2010-06-26
 说明  因可能的版权问题本站不提供该资源的存贮、播放、下载或推送,本文仅为内容简介。

中文名: AJAX 4使用Visual C# 2010:服务器端 视频教程

英文名: AppDev AJAX 4 Using Visual C Sharp2010 Server Side

资源格式: 光盘镜像

发行时间: 2010年

地区: 美国

对白语言: 粤语

文字语言: 英文

简介:

简介

术语Ajax用来描述一组技术,它使浏览器可以为用户提供更为自然的浏览体验。在Ajax之前,Web站点强制用户进入提交/等待/重新显示范例,用户的动作总是与服务器的“思考时间”同步。Ajax提供与服务器异步通信的能力,从而使用户从请求/响应的循环中解脱出来。借助于 Ajax,可以在用户单击按钮时,使用JavaScript和DHTML立即更新UI,并向服务器发出异步请求,以执行更新或查询数据库。当请求返回时,就可以使用 JavaScript和CSS来相应地更新UI,而不是刷新整个页面。最重要的是,用户甚至不知道浏览器正在与服务器通信:Web站点看起来是即时响应的。

虽然Ajax所需的基础架构已经出现了一段时间,但直到最近异步请求的真正威力才得到利用。能够拥有一个响应极其灵敏的Web站点确实激动人心,因为它最终允许开发人员和设计人员使用标准的HTML/CSS/JavaScript堆栈创建“桌面风格的(desktop- like)”可用性。

通常,在J2EE中,开发人员过于关注服务和持久性层的开发,以至于用户界面的可用性已经落后。在一个典型的 J2EE开发周期中,常常会听到这样的话,“我们没有可投入UI的时间”或“不能用HTML实现”。但是,以下Web站点证明,这些理由再也站不住脚了:

* BackPack

* Google Suggest

* Google Maps

* PalmSphere

所有这些Web站点都告诉我们,Web应用程序不必完全依赖于从服务器重新载入页面来向用户呈现更改。一切似乎就在瞬间发生。简而言之,在涉及到用户界面的响应灵敏度时,基准设得更高了。

定义Ajax

Adaptive Path公司的Jesse James Garrett这样定义Ajax:

Ajax不是一种技术。实际上,它由几种蓬勃发展的技术以新的强大方式组合而成。Ajax包含:

* 基于XHTML和CSS标准的表示;

* 使用Document Object Model进行动态显示和交互;

* 使用XMLHttpRequest与服务器进行异步通信;

* 使用JavaScript绑定一切。

这非常好,但为什么要以Ajax命名呢?其实术语Ajax是由Jesse James Garrett创造的,他说它是“Asynchronous JavaScript + XML的简写”。

Ajax的工作原理

Ajax的核心是JavaScript对象XmlHttpRequest。该对象在Internet Explorer 5中首次引入,它是一种支持异步请求的技术。简而言之,XmlHttpRequest使您可以使用JavaScript向服务器提出请求并处理响应,而不阻塞用户。

在创建Web站点时,在客户端执行屏幕更新为用户提供了很大的灵活性。下面是使用Ajax可以完成的功能:

* 动态更新购物车的物品总数,无需用户单击Update并等待服务器重新发送整个页面。

* 提升站点的性能,这是通过减少从服务器下载的数据量而实现的。例如,在Amazon的购物车页面,当更新篮子中的一项物品的数量时,会重新载入整个页面,这必须下载 32K的数据。如果使用Ajax计算新的总量,服务器只会返回新的总量值,因此所需的带宽仅为原来的百分之一。

* 消除了每次用户输入时的页面刷新。例如,在Ajax中,如果用户在分页列表上单击Next,则服务器数据只刷新列表而不是整个页面。

* 直接编辑表格数据,而不是要求用户导航到新的页面来编辑数据。对于Ajax,当用户单击Edit时,可以将静态表格刷新为内容可编辑的表格。用户单击 Done之后,就可以发出一个Ajax请求来更新服务器,并刷新表格,使其包含静态、只读的数据。

一切皆有可能!但愿它能够激发您开始开发自己的基于Ajax的站点。然而,在开始之前,让我们介绍一个现有的Web站点,它遵循传统的提交/等待/重新显示的范例,我们还将讨论Ajax如何提升用户体验。

AJAX is based on a collection of open and standards-based technologies that can give Web pages you build a responsiveness that rivals what you get in desktop applications. The course starts out with an exploration of the fundamentals of AJAX. Then you’ll go through a few of the more interesting features in JavaScript that will help you write code that runs in the browser. Next up is an introduction to the five server-side controls that you can use in a Web forms page to reduce the amount of data that has to move between client and server. Then you’ll explore some of the techniques you can use to create applications that give users a good experience with your Web application. Next you’ll look at the AJAX Control Toolkit, a collection of server-side controls and extenders that do a lot of the work that you used to have to write reams of JavaScript code to accomplish.

In this course, you will learn:

* A few of the more interesting features in JavaScript that will help you write code that runs in the browser

* About the server and client-side components of ASP.NET AJAX

* About avoiding full page postbacks that flash in the browser and can be intolerably slow for a user

* With your Web application how to use multiple UpdatePanel controls

* With your Web application hooking into the browser’s history feature

Prerequisites: This course assumes that you are familiar and experienced with Microsoft’s .NET Framework and ASP.NET development tools. You should be familiar with Web development and understand how HTTP and HTML work to produce Web pages for the user. You should have experience writing applications with ASP.NET 3.5, 4.0, or later Web forms, and be familiar with how ASP.NET processes page requests, and have strong experience with .NET Framework 3.5, 4.0, or later programming. You should have experience with Visual Studio 2008, 2010, or later for building Web application projects. Experience with building database applications using these tools will be helpful, although not strictly necessary. You should also have some experience with writing JavaScript.

Your Instructor

Don Kiely has been using and programming computers since the mid-1970s, when he first punched IBM punch cards for batch processing to solve engineering problems. Now Don is a nationally recognized author, instructor and consultant who travels the country sharing his expertise in SQL Server and security. He has written business software using assembly, C/C++, dBASE, Nantucket Clipper, RPG II, C#, and Visual Basic for a variety of industries, and has taught software and business administration courses at community colleges. Now Don is an author and presenter for AppDev, and a consultant for a variety of companies that develop distributed applications for public and private organizations. Don is also the author or coauthor of several programming books, and a featured speaker at SQL Server conferences.

代码

.do-"""""'-o.. *

.o"" "".. ***

,,'' ``b. *

d' ``b

d`d: `b. ***

,,dP `Y. ***

d`88 `8. **

8`88' `8 **

Y:d8P 8, **

P,88b ,`8 **

::d888, ,8:8. **

dY88888 `' :: **

8:8888 `b *** *

Pd88P',... ,d888o.8 ***

:88'dd888888o. d8888`88:

,:Y:d8888888888b ,d88888:88:

:::b88d888888888b. ,d888888bY8b ***** * **

b:P8;888888888888. ,88888888888P ****** ** **** *

8:b88888888888888: 888888888888' ** * * ** ****

8:8.8888888888888: Y8888888888P * * * ** * *

YP88d8888888888P' ""888888"Y * * ** *

:bY8888P"""""'' : ** ** ** *

8'8888' d ** ** ** *

:bY888, ,P ** ** ** *

Y,8888 d. ,- ,8' ** ** ** *

`8)888: ' ,P' ** ** ** *

`88888. ,... ,P * ** ***

`Y8888, ,888888o ,P * ***

Y888b ,88888888 ,P' **** **

`888b ,888888888 ,,' * *****

`Y88b dPY888888OP :' * **

:88.,'. `'` p *

)8P, ,b ' . **

:p d,'d`b, ,8

. dP' d8': ,

'8P" d8P' 8 - p *****

d,' ,d8' '' : ******

iNK H0RN Presents .. d' 8P' d' ' ; ** * * **

,: `' d p. * * * **** *

,dooood88: , ,d `` `b. * * ****

.o8"'""""""Y8.b 8 `"'' .o' ` """ob. ** ** * **

dP' `8: K dP'' "`Yo. ** ** *

dP 88 8b. ,d' ``b ** *****

8. 8P 8""' `" :. ** ** ***

:8: :8' ,: :: ** ** ***

:8: d: d' :: * ** ***

:8: dP ,,' :: * ***

`8: :b dP ,, :: **** ***

,8b :8 dP ,, d * ***** *** *

:8P :8dP d' d 8 * *** ***

:8: d8P d' d88 :P *

d8' ,88' ,P ,d888 d' **

88 dP' ,P d8888b 8

,8: ,dP' 8. d8''88' :8

:8 d8P' d88b d"' 88 :8

d: ,d8P' ,8P""". 88 :P

8 ,88P' d' 88 :8

,8 d8P 8 Rls Date : 20/06/10 88 :8

d: 8P ,: Type : Tech Bookware :88 :8

8',8:,d d' Supplier : iNK H0RN :8: :8

,8,8P'8' ,8 Disks : 1 DVD 8' :8

:8`' d' d' Archive : i-adajax4vcs10ss p:

`8 ,P :8 # Files : 16 x 50 MB :8: p:

8, ` d8. :8: 8:

:8 d88: d8: 8

`8, d8888 88b 8

88 ,d::888 888 Y:

YK,oo8P :888 888. `b

`8888P :888: ,888: Y,

``'" `888b :888: `b

8888 888: ::

8888: 888b Y.

8888b :888 `b

88888. `888, Y

dPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPd

: AppDev - AJAX 4 Using Visual C# 2010: Server Side

... with Don Kiely

PdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdP

: DESCRIPTION

AJAX is based on a collection of open and standards-based technologies

that can give Web pages you build a responsiveness that rivals what you

get in desktop applications. The course starts out with an exploration

of the fundamentals of AJAX. Then youÆll go through a few of the more

interesting features in JavaScript that will help you write code that

runs in the browser. Next up is an introduction to the five server-side

controls that you can use in a Web forms page to reduce the amount of

data that has to move between client and server. Then youÆll explore

some of the techniques you can use to create applications that give

users a good experience with your Web application. Next youÆll look

at the AJAX Control Toolkit, a collection of server-side controls and

extenders that do a lot of the work that you used to have to write

reams of JavaScript code to accomplish.

In this course, you will learn:

* A few of the more interesting features in JavaScript that will help you

write code that runs in the browser

* About the server and client-side components of ASP.NET AJAX

* About avoiding full page postbacks that flash in the browser and can

be intolerably slow for a user

* With your Web application how to use multiple UpdatePanel controls

* With your Web application hooking into the browserÆs history feature

http://www.appdev.com/

prodfamily.asp?catalog_name=AppDevCatalog&category_name=ASXProduct

PdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdP

Interested in joining iNK ? We're currently looking to expand.

: Suppliers - Cisco / Microsoft Training

: Suppliers - Online Subscriptions - TestOut/Nuggets/PrepLogic etc..

: Suppliers - MCT Access MOC/Technet

: Suppliers - Often Buy Training/Subscriptions for yourself ?

Or if you feel you can contribute in other ways, please contact..

-----> Email - inkme@hush.ai

dPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPd

8 8

8 8

8 : INSTALLATION 8

8 8

8 a. Extract 8

8 b. Mount/Burn 8

8 c. Play & Learn 8

8 8

8 8

PdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdPdP

: RESPECT DUE

DDUiSO .. JGTiSO .. AG .. CFE .. LiBiSO

引用

转自TLF

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有