I am using this code
$.ajax({
type: "GET",
url: "CSProcessing.aspx/ReadyRTicketsForSale",
contentType: "application/json; charset=utf-8",
data: "{ 'reservationNo' : '" + resNo +
"'}",
dataType: "json",
success: rloadticketsS,
});
This code returns result correctly but very slow i want fast execution.
Please give any suggestion any suggestion. Thanks in advance
Your code hasn’t anything to do with the Javascript – Its your server that’s responding slowly.
Make sure its not getting stuck in loops longer than it needs to, etc. make sure your server is configured correctly, THEN crack open the profiler.