主题:.NET2.0环境下的Ajax选型和应用
一 Demo说明
应用方式 | 文件名称 | 描述 |
Default.aspx | 首页导航,列出四个 Demo 页面的链接 | |
Atlas | AtlasDemo.aspx | 使用 Atlas 实现 Product 的 CRUD 功能,通过 UpdatePanel 完成无刷新操作。 |
AjaxPro | AjaxProDemo.aspx | 使用 Ajax.NET Pro 实现 Product 的 CRUD 功能,编辑、删除操作返回 true/false 的结果,通过 .NET DataGrid 控件实现页面数据列表的呈现( HTML )。 |
AjaxProDemoSecond.aspx | 使用 Ajax.NET Pro 实现 Product 的 CRUD 功能,编辑、删除操作返回所有的 Product 列表,通过 .NET DataGrid 控件实现页面数据列表的呈现( HTML )。 | |
Prototype | PrototypeDemo.aspx | 使用 Prototype 实现 Product 的 CRUD 功能,编辑、删除操作返回所有的 Product 列表, Client 和 Server 的数据以 JSON 格式传输。 |
Product.cs | Product 实体类 |
二 研究结论
1 Ajax 应用框架选型
2 Ajax 框架性能及开发效率对比
请求 URL | 数据流量 | 说明 |
Prototype | ||
PrototypeServerResponse.aspx ?action=listProduct | Request Count: 1 Bytes Sent: 380 Bytes Received: 2,150 | 获取 Product 列表,以 JSON 的格式返回,客户端使用 Javascript 脚本处理呈现。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond, App_Web_qgwv3twq.ashx | Request Count: 1 Bytes Sent: 493 Bytes Received: 1,392 | 获取 Product 列表,以 HTML 的格式返回,客户端直接呈现。 |
Atlas | ||
AtlasDemo.aspx | Request Count: 1 Bytes Sent: 827 Bytes Received: 6,391 | 获取 Product 列表, Server 完成 DataGrid 数据源绑定呈现。 |
请求 | 数据流量 | 说明 |
Prototype | ||
PrototypeServerResponse.aspx ?action=deleteProduct&productId=1 | Request Count: 1 Bytes Sent: 446 Bytes Received: 1,891 | 传送 ProductId ,完成删除操作,并获取 Product 列表到 Client 端呈现。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond, App_Web_qgwv3twq.ashx | Request Count: 1 Bytes Sent: 504 Bytes Received: 1,300 | 调用远程 RPC 接口,完成删除操作,并获取 Product 列表的 HTML 在 Client 端呈现。 |
Atlas | ||
AtlasDemo.aspx | Request Count: 1 Bytes Sent: 2,287 Bytes Received: 5,913 | 触发 Server 端的 Action 事件,完成删除操作,需要 Postback 整个页面。 |
请求 | 数据流量 | 说明 |
Prototype | ||
PrototypeServerResponse.aspx ?action=getProduct&productId=8 | Request Count: 1 Bytes Sent: 443 Bytes Received: 403 | 传送 ProductId ,获取 JSON 格式的 Product 信息, Client 端完成解析并呈现。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond, App_Web_qgwv3twq.ashx | Request Count: 1 Bytes Sent: 506 Bytes Received: 284 | 调用 RPC 接口,获取 Text 格式的 Product 信息, Client 端完成解析并呈现。 |
Altas | ||
AtlasDemo.aspx | Request Count: 1 Bytes Sent: 2,185 Bytes Received: 6,275 | 触发 Server 端的 Action 事件,获取 Product 信息,需要 Postback 整个页面。 |
请求 | 数据流量 | 说明 |
Prototype | ||
PrototypeServerResponse.aspx ?action=updateProduct&productId=8 &productName=Sony&manufacturer=China | Request Count: 1 Bytes Sent: 482 Bytes Received: 1,877 | 传送 ProductId 等参数,完成保存操作,并获取 Product 列表。 |
Ajax.NET Pro ( Second ) | ||
ajaxpro/AjaxProDemoSecond, App_Web_qgwv3twq.ashx | Request Count: 1 Bytes Sent: 549 Bytes Received: 1,284 | 调用远程 PPC 接口,完成保存操作,并获取 HTML 格式的 Product 列表。 |
Atlas | ||
AtlasDemo.aspx | Request Count: 1 Bytes Sent: 2,218 Bytes Received: 5,913 | 触发 Server 端的 Action 事件,完成保存操作,需要 Postback 整个页面。 |
请求 | 数据流量 | 说明 |
Prototype | ||
PrototypeServerResponse.aspx ?action=addProduct&productName=Sony &manufacturer=China | Request Count: 1 Bytes Sent: 467 Bytes Received: 2,050 | 传送 ProductName 等参数,完成增加操作,并获取 JSON 格式的 Product 列表。 |
Ajax.NET Pro | ||
ajaxpro/AjaxProDemoSecond, App_Web_qgwv3twq.ashx | Request Count: 1 Bytes Sent: 529 Bytes Received: 1,364 | 调用远程 RPC 接口,完成增加操作,并获取 HTML 格式的 Product 列表。 |
Atlas | ||
AtlasDemo.aspx | Request Count: 1 Bytes Sent: 2,249 Bytes Received: 6,533 | 触发 Server 端的 Action 事件,完成增加操作,需要 Postback 整个页面。 |
三 使用Ajax需要注意的问题
四 参考材料
以上就是.NET2.0环境下的Ajax选型和应用(提供Demo源码下载)的详细内容,更多请关注易知道|edz.cc其它相关文章!