3
Answers

where to use cross join in real time example?

chamu reddy

chamu reddy

7y
163
1
where to use cross join in real time example?
Answers (3)
0
Suresh Kumar

Suresh Kumar

NA 3.1k 36.5k 7y
Hi ,
 
Below code may help
 
 
$.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);
}
}