我需要webmethod of a webservice
用 Jquery 调用 a 但我已经在webservice.asmx
页面上定义了 web 方法。但是现在我需要在我的 default.aspx.cs 页面上编写该页面,当我从 jquery ajax 调用它时这不起作用...
我有
<script type="text/javascript">
$(document).ready(function () {
$contentLoadTriggered = false;
$(window).scroll(
function () {
if ($(window).scrollTop() == $(document).height() - $(window).height()) {
$contentLoadTriggered = true;
$.ajax(
{
type: "POST",
url: "DynamicDataLoad2.aspx/GetDataFromServer",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (msg) {
$("#wrapperDiv").append(msg.d);
$contentLoadTriggered = false;
},
error: function (x, e) {
alert("The call to the server side failed. ");
}
});
}
});
});
</script>
我在 Default.aspx.cs 页面上定义了 GetDataFromServer()。