惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
The Cloudflare Blog
V
Visual Studio Blog
罗磊的独立博客
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
D
Docker
Last Week in AI
Last Week in AI
B
Blog RSS Feed
C
Check Point Blog
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园 - 聂微东
MongoDB | Blog
MongoDB | Blog
雷峰网
雷峰网

博客园 - Tristan(GuoZhijian)

Core Design Patterns(16) Chain of Responsibility 职责链模式 Core Design Patterns(15) Template Method 模版方法模式 Core Design Patterns(14) State 状态模式 Core Design Patterns(13) Strategy 策略模式 Core Design Patterns(12) Builder 建造者模式 Core Design Patterns(11) Abstract Factory 抽象工厂模式 Core Design Patterns(10) Singleton 单例模式 Core Design Patterns(9) Factory Method 工厂方法模式 Core Design Patterns(8) Prototype 原型模式 Core Design Patterns(7) Facade 外观模式 Core Design Patterns(6) Adapter 适配器模式 Core Design Patterns(5) Flyweight 享元模式 Core Design Patterns(4) Composite 组合模式 Core Design Patterns(3) Bridge 桥接模式 Core Design Patterns(2) Proxy 代理模式 Core Design Patterns(1) Decorator 装饰模式 老调重弹:插件式框架开发的一个简单应用 Behavior模型应用:可拖动的div容器 Microsoft Asp.Net Ajax框架入门(13) PageRequestManager
Microsoft Asp.Net Ajax框架入门(12) 了解异步通信层
Tristan(GuoZhijian) · 2008-02-17 · via 博客园 - Tristan(GuoZhijian)

VS 2008

本文通过两个简单的例子,了解Asp.Net Ajax Asynchronous Communication Layer

Asp.Net Ajax异步通信层提供了一系列客户端的类,用于客户端请求服务端

第一个例子:请求服务端页面
1) 被请求页 Ajax_GetUserName.aspx

    html代码仅留页面声明,其余全部清楚:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Ajax_GetUserName.aspx.cs" Inherits="Ajax_GetUserName" %>

    Ajax_GetUserName.aspx.cs页面写处理逻辑:

public partial class Ajax_GetUserName : System.Web.UI.Page
{
    
protected void Page_Load(object sender, EventArgs e)
    
{
        
if (Request.QueryString["userId"== "1"{
            Response.Write(
"guozhijian");
        }

        
else {
            Response.Write(
string.Empty);
        }

    }

}

2) 客户端请求

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    
<title>Untitled Page</title>
    
<script type="text/javascript">
        function btnGetNameClickHandler() 
{
            var req 
= new Sys.Net.WebRequest();
            req.set_url(
"Ajax_GetUserName.aspx?userId=1");
            req.add_completed(requestCompleted);
            req.invoke();
        }

        function requestCompleted(executor, eventArgs) 
{
            
if(executor.get_statusCode() == 200{
                alert(executor.get_responseData());
            }

        }

    
</script>
</head>
<body>
    
<form id="form1" runat="server">
    
<asp:ScriptManager ID="smgr" runat="server"></asp:ScriptManager>
    
<div>
        
<input type="button" id="btnGetName" onclick="btnGetNameClickHandler()" value="get name" />
    
</div>
    
</form>
</body>
</html>

第二个例子:请求XML文档
1)新建UserInfos.xml

<?xml version="1.0" encoding="utf-8" ?>
<userInfos>
  
<userInfo>
    
<userId>1</userId>
    
<userName>guozhijian</userName>
  
</userInfo>
  
<userInfo>
    
<userId>2</userId>
    
<userName>zhenglanzhen</userName>
  
</userInfo>
</userInfos>

2)客户端请求

function btnGetXmlClickHandler() {
            var req 
= new Sys.Net.WebRequest();
            req.set_url(
"UserInfos.xml");
            req.add_completed(getXmlCompleted);
            req.invoke();    
        }

        function getXmlCompleted(executor, eventArgs) 
{
            
if(executor.get_statusCode() == 200{
                alert(executor.get_xml().xml);
            }

        }