我无法使用jquery ajax()方法访问web服务的webmethod。我的webservice位于website / Afolder / webservices文件夹中。我在web2 / Afolder / usercontrol文件夹中的用户控件中调用webmethod。用户控件位于网站/ Afolder文件夹内的页面中。我的网址的值应该是什么才能调用web方法?
$.ajax({
type: "POST", url: "/WebServices/AMyService.asmx/ReturnDates",
data: "{'args':'" + $('#<%= DropDownListTimeFrame.ClientID %>').val() + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
}
});