[Solved] how to get the items base in json objects
It seems like this should work for you: $.ajax({ type: “POST”, contentType: “application/json”, url: “ManualOfferEx.aspx/OnSubmit”, data: JSON.stringify(data), dataType: “json”, success: function (result) { console.log(result); var data = result.d; var success = data.Success; var message = data.Message; console.log(message); }, error: function (xhr, err) { console.log(“readyState: ” + xhr.readyState + “\nstatus: ” + xhr.status + “\nresponseText: ” … Read more