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

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub 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);
            }

        }