我正在使用带有 jQuery 的 ASP.NET 页面方法。这是我的代码,
$.ajax({
type: "POST",
url: "Default.aspx/GetRecords",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
而 ASP.NET 页面方法是,
[WebMethod]
public static string GetRecords(int currentPage,int pagesize)
{
// my logic here
}
如何为 jQuery 传递值currentPage
和pagesize
从 jQuery 传递值?