gpt4 book ai didi

javascript - 无法从母版页的代码页中调用 Web 方法

转载 作者:行者123 更新时间:2023-11-29 14:49:33 24 4
gpt4 key购买 nike

我在 c# asp.net 中有一个 web 方法和一个调用该方法的 jquery 代码。如果我将代码放在 myservice .asmx 之类的 webService 页面中,它就可以正常工作。我从同一个母版页调用它。但是当我从 .aspx 页面调用它时它根本不起作用。我在按钮单击事件上调用此 Web 服务。在这两种情况下都会触发按钮单击,我通过 javascript 中的警报检查了它。

我调用webmethod的母版页代码如下:

 <%--  WebService Data--%>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type ="text/javascript" >
$(document).ready(function () {
$("#btni").click(function () {
var dataSent = "{roll:" + 1 + ",name:\"" + "Mubashir\"}"
$.ajax({
type: "Post",
url: "EmailList.aspx/heelo",
data: dataSent,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
var studentInfo = response.d;
alert(JSON.stringify(response.d));
$("#output").empty();
$.each(studentInfo, function (index, Info) {
//alert(index);
//alert(index.Info);
$("#output").append(
'<strong>Roll : </strong>' + Info.roll + ' ' +
'<strong>Name : </strong>' + Info.name + ' ' +
'<strong>Address : </strong>' + Info.address + '<br/> '
);
});
},
failure: function (msg) {
alert(msg.d);
$("#output").text(msg);
}
});
});
});
</script>

<%-- Web 服务数据 --%>
EmailList.aspx.cs页面的webmethod是这样的:

[WebMethod]
public string heelo(int roll, string name)
{

return "Mubashir";
}
//WebService

如果我将相同的方法放在 myservice.asmx 代码文件上,它工作正常。

最佳答案

让你的方法静态

[WebMethod]
public static string heelo(int roll, string name)
{

return "Mubashir";
}

要了解更多有关为什么 ASP.Net AJAX PageMethods 必须是 static 的信息,请阅读 this .

关于javascript - 无法从母版页的代码页中调用 Web 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27837355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com