$.ajax(
{
type: "POST",
url: "Gridview.aspx/BindSearchDatatable",
//data: "{officename : '"+searchtext+"'}",
data: JSON.stringify({ officename: searchtext }),
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
cache: false,
success: function (data) {
//iterate the gridview,bind the json data to gridview
$("#gvDetails").empty();
for (var i = 0; i < data.d.length; i++) {
$("#gvDetails").append("" + data.d[i].OfficeName + "" + data.d[i].City + "" + data.d [i].Country + "");
}
},
error: function (x, e) {
alert("The call to the server side failed. " + x.responseText);
}
}