On my first ajax request, i don't want client should wait, so code is not waiting for Success. It redirects the page to the next. But its not working
$.ajax({
data: '{}',
url: "Service.asmx/GetNextID",
success: function(msg1) {
$.ajax({
type: "POST", cache: false, contentType: "application/json; charset=utf-8", dataType: "json", timeout: 5000,
url: "Service.asmx/SaveData",
dataFilter: function(data) {var msg = (typeof (JSON) !== 'undefined' && typeof (JSON.parse) === 'function') ? JSON.parse(data) : eval('(' + data + ')');return (msg.hasOwnProperty('d')) ? msg.d : msg;},
data: "{ID:'" + $get('<%=txt1.ClientID %>').value + "',Date:'<%=cutoffdate%>',data:'" + $("#<%=txt2.ClientID %>").val() + "'}",
error: function(xhr, desc, exception){
alert("Failed!");
}
});
window.location = "../Result.aspx?ID=" + msg1.ID;
},
error: function(xhr, desc, exception) {
}
});
So since its first ajax is not waiting for success and redirecting the page, the next call which is SavaData is getting cancelled.
ANy work around?