我在c#asp.net中有一个web方法,并且有一个调用该方法的jquery代码。如果我将代码放在像myservice .asmx这样的webService页面中,它可以正常工作。我从同一个母版页调用它。但是当我从.aspx页面调用它时根本不起作用。我在按钮点击事件上调用此web服务。在我通过javascript中的警告检查它的两种情况下都会触发按钮点击。
用于调用webmethod的MY主页代码如下:
<%-- 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>
&lt;% - WebService数据 - %&gt;
EmailList.aspx.cs页面上的webmethod是这样的:
[WebMethod]
public string heelo(int roll, string name)
{
return "Mubashir";
}
//WebService
如果我在myservice.asmx代码文件上放置相同的方法,它可以正常工作。
答案 0 :(得分:2)
制作方法static
[WebMethod]
public static string heelo(int roll, string name)
{
return "Mubashir";
}
要了解更多有关为什么ASP.Net AJAX PageMethods必须static
读取this。