我正在使用jQuery的ASP.NET頁面方法。這裏是我的代碼,如何將int值傳遞給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
?
@codeka似乎不工作... – 2010-03-30 04:17:57
@codeka該方法不會被調用.. – 2010-03-30 04:18:16
@codeka螢火蟲它'500內部服務器錯誤' – 2010-03-30 04:20:53