是否可以从不同页面上的 javascript 调用具有 [WebMethod] 属性的方法?即在名为 PageTwo.aspx 的页面上使用来自脚本的以下 jquery ajax 调用:
$.ajax(
{
type: "POST",
url: "pageone.aspx/PageOneMethodOne",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg)
{
//something
}
}
);
PageOne.aspx.cs 包含
[WebMethod]
public string PageOneMethodOne()
{
return "hello world";
}