Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
It doesn't sound right to me. The ajax call need to wait until it get the response to know whether it is a 200 or 302 response. How can it redirect without waiting for success ? – Khue Vu Aug 4 '12 at 16:00

1 Answer

wait for a few secs before redirecting ?

share|improve this answer
Its all about performance. Client doesn't wanna wait. – User13839404 Jan 25 '11 at 22:02
okie wait for a few milliseconds before redirecting ? – piyush Jan 25 '11 at 23:34
Do you think it gonna work by giving few ms? Can you explain it please? – User13839404 Jan 26 '11 at 0:51
see the thing is in javascript things generally happen asynchronously. Here just after the ajax call is fired, redirect happens and that can possibly stop the ajax call. What you want to do is a fire and forget ajax call...right ? So make the ajax call. Give it a few milliseconds or may be a second and then redirect. It will, in most cases, make sure ajax is fired. Once an http request is sent to the server it cannot be called back. Otherwise fire that ajax call and instead of redirect take the resulting page and replace it will existing dom. – piyush Jan 26 '11 at 5:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.