應(yīng)用方式 |
文件名稱 |
描述 |
|
Default.aspx |
首頁(yè)導(dǎo)航,列出四個(gè) Demo 頁(yè)面的鏈接 |
Atlas |
AtlasDemo.aspx |
使用 Atlas 實(shí)現(xiàn) Product 的 CRUD 功能,通過(guò) UpdatePanel 完成無(wú)刷新操作。 |
|
|
|
AjaxPro |
AjaxProDemo.aspx |
使用 Ajax.NET Pro 實(shí)現(xiàn) Product 的 CRUD 功能,編輯、刪除操作返回 true/false 的結(jié)果,通過(guò) .NET DataGrid 控件實(shí)現(xiàn)頁(yè)面數(shù)據(jù)列表的呈現(xiàn)( HTML )。 |
|
| |
|
AjaxProDemoSecond.aspx |
使用 Ajax.NET Pro 實(shí)現(xiàn) Product 的 CRUD 功能,編輯、刪除操作返回所有的 Product 列表,通過(guò) .NET DataGrid 控件實(shí)現(xiàn)頁(yè)面數(shù)據(jù)列表的呈現(xiàn)( HTML )。 |
|
| |
Prototype |
PrototypeDemo.aspx |
使用 Prototype 實(shí)現(xiàn) Product 的 CRUD 功能,編輯、刪除操作返回所有的 Product 列表, Client 和 Server 的數(shù)據(jù)以 JSON 格式傳輸。 |
|
| |
|
| |
|
Product.cs |
Product 實(shí)體類 |
請(qǐng)求 URL |
數(shù)據(jù)流量 |
說(shuō)明 |
Prototype | ||
PrototypeServerResponse.aspx
?action=listProduct |
Request Count: 1
Bytes Sent: 380
Bytes Received: 2,150 |
獲取 Product 列表,以 JSON 的格式返回,客戶端使用 Javascript 腳本處理呈現(xiàn)。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond,
App_Web_qgwv3twq.ashx |
Request Count: 1
Bytes Sent: 493
Bytes Received: 1,392 |
獲取 Product 列表,以 HTML 的格式返回,客戶端直接呈現(xiàn)。 |
Atlas | ||
AtlasDemo.aspx |
Request Count: 1
Bytes Sent: 827
Bytes Received: 6,391 |
獲取 Product 列表, Server 完成 DataGrid 數(shù)據(jù)源綁定呈現(xiàn)。 |
請(qǐng)求 |
數(shù)據(jù)流量 |
說(shuō)明 |
Prototype | ||
PrototypeServerResponse.aspx
?action=deleteProductproductId=1 |
Request Count: 1
Bytes Sent: 446
Bytes Received: 1,891 |
傳送 ProductId ,完成刪除操作,并獲取 Product 列表到 Client 端呈現(xiàn)。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond,
App_Web_qgwv3twq.ashx |
Request Count: 1
Bytes Sent: 504
Bytes Received: 1,300 |
調(diào)用遠(yuǎn)程 RPC 接口,完成刪除操作,并獲取 Product 列表的 HTML 在 Client 端呈現(xiàn)。 |
Atlas | ||
AtlasDemo.aspx |
Request Count: 1
Bytes Sent: 2,287
Bytes Received: 5,913 |
觸發(fā) Server 端的 Action 事件,完成刪除操作,需要 Postback 整個(gè)頁(yè)面。 |
請(qǐng)求 |
數(shù)據(jù)流量 |
說(shuō)明 |
Prototype | ||
PrototypeServerResponse.aspx
?action=getProductproductId=8 |
Request Count: 1
Bytes Sent: 443
Bytes Received: 403 |
傳送 ProductId ,獲取 JSON 格式的 Product 信息, Client 端完成解析并呈現(xiàn)。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond,
App_Web_qgwv3twq.ashx |
Request Count: 1
Bytes Sent: 506
Bytes Received: 284 |
調(diào)用 RPC 接口,獲取 Text 格式的 Product 信息, Client 端完成解析并呈現(xiàn)。 |
Altas | ||
AtlasDemo.aspx |
Request Count: 1
Bytes Sent: 2,185
Bytes Received: 6,275 |
觸發(fā) Server 端的 Action 事件,獲取 Product 信息,需要 Postback 整個(gè)頁(yè)面。 |
請(qǐng)求 |
數(shù)據(jù)流量 |
說(shuō)明 |
Prototype | ||
PrototypeServerResponse.aspx
?action=updateProductproductId=8
productName=Sonymanufacturer=China |
Request Count: 1
Bytes Sent: 482
Bytes Received: 1,877 |
傳送 ProductId 等參數(shù),完成保存操作,并獲取 Product 列表。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond,
App_Web_qgwv3twq.ashx |
Request Count: 1
Bytes Sent: 549
Bytes Received: 1,284 |
調(diào)用遠(yuǎn)程 PPC 接口,完成保存操作,并獲取 HTML 格式的 Product 列表。 |
Atlas | ||
AtlasDemo.aspx |
Request Count: 1
Bytes Sent: 2,218
Bytes Received: 5,913 |
觸發(fā) Server 端的 Action 事件,完成保存操作,需要 Postback 整個(gè)頁(yè)面。 |
請(qǐng)求 |
數(shù)據(jù)流量 |
說(shuō)明 |
Prototype | ||
PrototypeServerResponse.aspx
?action=addProductproductName=Sony
manufacturer=China |
Request Count: 1
Bytes Sent: 467
Bytes Received: 2,050 |
傳送 ProductName 等參數(shù),完成增加操作,并獲取 JSON 格式的 Product 列表。 |
Ajax.NET Pro | ||
ajaxpro/AjaxProDemoSecond,
App_Web_qgwv3twq.ashx |
Request Count: 1
Bytes Sent: 529
Bytes Received: 1,364 |
調(diào)用遠(yuǎn)程 RPC 接口,完成增加操作,并獲取 HTML 格式的 Product 列表。 |
Atlas | ||
AtlasDemo.aspx |
Request Count: 1
Bytes Sent: 2,249
Bytes Received: 6,533 |
觸發(fā) Server 端的 Action 事件,完成增加操作,需要 Postback 整個(gè)頁(yè)面。 |
標(biāo)簽:深圳 威海 銅川 晉城 崇左 西藏 撫州 伊春
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《.NET2.0環(huán)境下的Ajax選型和應(yīng)用(提供Demo源碼下載)》,本文關(guān)鍵詞 .NET2.0,環(huán)境,下,的,Ajax,選型,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。