我知道我可以使用以下语法使用jquery调用页面方法
$.ajax({ type: "POST",url: "Default.aspx/GetDate",data: "{}",contentType: "application/json; charset=utf-8",dataType: "json",success: function(msg) { // Replace the div's content with the page method's return. $("#Result").text(msg.d); } });
这适用于aspx页面,但是可以使用ascx页面吗? (网页控制)
我一直在尝试约半个小时,因为我不能工作,我想知道是否可能。
注意:为了清楚,当我尝试调用ascx页面时,我正在更新jquery中的url 原文链接:https://www.f2er.com/aspnet/253529.html