webmethod of a webservice
Jquery を使用して呼び出す必要がありますが、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() を定義しました。