[www.ed2k.online]下載基地為您提供軟件、遊戲、圖書、教育等各種資源的ED2K電驢共享下載和MAGNET磁力鏈接下載。
設為首頁
加入收藏
首頁 圖書資源 軟件資源 游戲資源 教育資源 其他資源
 電驢下載基地 >> 其他资源 >> 電腦基礎 >> 《AJAX 4使用Visual C# 2010:服務器端 視頻教程》(AppDev AJAX 4 Using Visual C Sharp2010 Server Side)[光盤鏡像]
《AJAX 4使用Visual C# 2010:服務器端 視頻教程》(AppDev AJAX 4 Using Visual C Sharp2010 Server Side)[光盤鏡像]
下載分級 其他资源
資源類別 電腦基礎
發布時間 2017/7/13
大       小 -
《AJAX 4使用Visual C# 2010:服務器端 視頻教程》(AppDev AJAX 4 Using Visual C Sharp2010 Server Side)[光盤鏡像] 簡介: 中文名 : AJAX 4使用Visual C# 2010:服務器端 視頻教程 英文名 : AppDev AJAX 4 Using Visual C Sharp2010 Server Side 資源格式 : 光盤鏡像 發行日期 : 2010年 地區 : 美國 對白語言 : 粵語 文字語言 : 英文 簡介 : 簡介   術語Ajax用來描述一組技術,它使浏覽器可以為用戶提供
電驢資源下載/磁力鏈接資源下載:
全選
"《AJAX 4使用Visual C# 2010:服務器端 視頻教程》(AppDev AJAX 4 Using Visual C Sharp2010 Server Side)[光盤鏡像]"介紹
中文名: 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 - [email protected]

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


相關資源:

免責聲明:本網站內容收集於互聯網,本站不承擔任何由於內容的合法性及健康性所引起的爭議和法律責任。如果侵犯了你的權益,請通知我們,我們會及時刪除相關內容,謝謝合作! 聯系信箱:[email protected]

Copyright © 電驢下載基地 All Rights Reserved