博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS调用PageMethods
阅读量:5843 次
发布时间:2019-06-18

本文共 1735 字,大约阅读时间需要 5 分钟。

操作步骤:

1。新建一个WebApplication项目,取默认设置。

2。双击设计界面,进入后天代码编辑界面,代码如下:

using System;

using System.Web.Services;

namespace WebApplication1

{

public partial class _Default : System.Web.UI.Page

{

protected void Page_Load(object sender, EventArgs e)

{

}

[WebMethod]

public static string TestFunc1()

{

return "This is the returns of behind code function one";

}

[WebMethod]

public static string TestFunc2(string str)

{

return "This is the returns of behind code function two!You give me the string :"+str;

}

}

}

3。准备好PageMethods后,编辑Default.aspx文件。代码如下:

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">

<html xmlns="" >

<head runat="server">

<title>JS调用后台PageMethods</title>

<script type="text/javascript" language="javascript">

function TheJSTestfunc1()

{

PageMethods.TestFunc1(onsuccess);

}

function TheJSTestfunc2()

{

var txt=document.getElementById('Text1').value;

PageMethods.TestFunc2(txt,onsuccess);

}

function onsuccess(value)

{

document.getElementById('divResult').innerHTML=value;

}

</script>

</head>

<body>

<form id="form1" runat="server">

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">

</asp:ScriptManager>

<div>

<input id="Button1" type="button" value="button" onclick="TheJSTestfunc1()" />

<hr />

<input id="Text1" type="text" /><input id="Button2" type="button" value="button" onclick="TheJSTestfunc2()" />

<hr />

The returns :<div id="divResult"></div>

</div>

</form>

</body>

</html>

操作说明:

其实与我的另一篇随笔[]里面提到的相似。

1.页面中需要添加ScriptManager组件,然后将它的EnablePageMethods属性设置为True。

2.编写页面方法时也要向调用WebService一样,在方法前加[WebMethod],调用WebService与PageMethods其实是同出一辙,原理都是一样的。

工作原理:

暂无。

源码下载:

 

 

 

转载地址:http://puqcx.baihongyu.com/

你可能感兴趣的文章
P2P的远程协助系统技术分析[转]
查看>>
在.NET开发中的单元测试工具之(1)——NUnit
查看>>
文件的散列与校验:.NET发现之旅(五)
查看>>
生产了十几年NAS的群晖,这次准备重新定义NAS
查看>>
大家都有的迷茫我也来了
查看>>
46次课(Nginx安装 、 默认虚拟主机、Nginx用户认证、Nginx域名重定向)
查看>>
c# 适配器模式的详细介绍
查看>>
windows2008支持多用户同时登录
查看>>
UEditor 1.2.5 for java 自定义配置
查看>>
js微模板引擎
查看>>
Gson转JSON字符串时候, 将时间转成Long型
查看>>
oral_quiz->#N个骰子的点数和#
查看>>
15、文本查看命令--cat、more、head、tail
查看>>
Oracle模糊查询的实现
查看>>
openstack oslo.config简短学习笔记
查看>>
访问url中存在中文,apache 重写出现403问题处理方案
查看>>
从Redis的数据丢失说起
查看>>
Kafka集群搭建详细步骤
查看>>
Mac os 10.9 Python MySQLdb
查看>>
理解对象(通过关联数组和基本包装类型)
查看>>