Search code examples
asp.netjquerypagemethods

How to pass int values to ASP.NET page methods from jQuery?


I am using ASP.NET page methods with jQuery. Here is my code,

$.ajax({
      type: "POST",
      url: "Default.aspx/GetRecords",
      data: "{}",
      contentType: "application/json; charset=utf-8",
      dataType: "json",

and the ASP.NET page method is,

[WebMethod]
public static string GetRecords(int currentPage,int pagesize)
{
    // my logic here
}

How to pass values for currentPage and pagesize from jQuery?


Solution

  • I got it working. My data section must be

    data: "{'currentPage':1,'pagesize':5}",