$.ajax({
type: "POST",
url: "VendorMaster.aspx/SanDocumentData",
data: '{reqvehicleregistrationname: "' + vehicleregistrationname + '",reqvehicleregistrationpath:"' + vehicleregistrationpath + '" }',
contentType: "application/json; charset=utf-8",
responseType: "json",
cache: false
}
);
From the above code the below line exceed 120 characters, how to split .
data: '{reqvehicleregistrationname: "' + vehicleregistrationname +
'",reqvehicleregistrationpath: "' + vehicleregistrationpath + '" }',
Bikesh SrivastavaPosted Oct 12, 2016, 9:08 AM