ASP.net AJAX 调用PageMethods实例

本文介绍如何使用ASP.NET AJAX实现客户端与服务器端的交互,通过具体步骤演示了如何创建一个能够获取服务器时间并显示在客户端的应用程序。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、新建网站,选择Asp.net Ajax Enabled Web Site 模板
2、 <asp:scrīptManager ID="scrīptManager1" runat="server"/>中增加 EnablePageMethods="True" ,以启用PageMethods
3、编写服务器端方法代码

 [System.Web.Services.WebMethod]
 public static string GetServerTime(clientValue1,clientValue2)
 {
     return DateTime.Now.ToString();
 }

请注意:a、[System.Web.Services.WebMethod]是必须的,相当于ajax.net中的[ajax.method],b、方法前面要上 public static

4、页面设计,内容如下
     <div>
<input type="button" value="服务器时间" id="btnGetServerTime" ōnclick="return btnGetServerTime_onclick()" />
<span id="result" />
</div>


5、编写客户端javascrīpt
  <scrīpt language="javascrīpt" type="text/javascrīpt">
// <!CDATA[

var ClientValue1,ClientValue2;
 function btnGetServerTime_onclick() {
 PageMethods.GetServerTime(ClientValue1,ClientValue2,cb_getServerTime,null,[AnyClientValue]);  //cb_getServerTime为onSuccess方法
}

function cb_getServerTime(resultFrovServer,[anyClientValue]) {  //其中 “anyClientValue”段为可选
document.getElementById("result").innerHTML = resultFrovServer;
}

6、执行程序,单击"服务器时间" 按钮就可返回服务器的时间并显示在result中。

附:

一、客户端代完整代码

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
    <scrīpt language="javascrīpt" type="text/javascrīpt">
// <!CDATA[

var ClientValue1,ClientValue2;
 function btnGetServerTime_onclick() {
 PageMethods.GetServerTime(ClientValue1,ClientValue2,cb_getServerTime,null,[AnyClientValue]);  //cb_getServerTime为onSuccess方法
}

function cb_getServerTime(resultFrovServer,[anyClientValue]) {  //其中 “anyClientValue”段为可选
document.getElementById("result").innerHTML = resultFrovServer;
}

// ]]>
</scrīpt>

</head>
<body>
    <form id="form1" runat="server">
        <asp:scrīptManager ID="scrīptManager1" runat="server" EnablePageMethods="True" />
       <div>
<input type="button" value="服务器时间" id="btnGetServerTime" ōnclick="return btnGetServerTime_onclick()" />
<span id="result" />
</div>

    </form>
</body>
</html>

二、服务器端完整代码

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
    [System.Web.Services.WebMethod]
     public static string GetServerTime(clientValue1,clientValue2)
 {
     return DateTime.Now.ToString(); 
    }
}

转载于:https://www.cnblogs.com/zhangsir/archive/2008/03/01/1087397.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值