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

Hi I have implemented one Ajax request to my site where I am calling one of page. It always return 200 OK but execute failed event I have tried lot of things but I am not getting where I am doing mistake. I adding my code here also please check and please let me the error.

 var row = "1";
    var json = "{'TwitterId':'" + row + "'}";
    //var json = "pankaj";


    $.ajax({
        type: 'POST',
        url: 'Jqueryoperation.aspx?Operation=DeleteRow',
        contentType: 'application/json; charset=utf-8',
        data: json,
        dataType: 'json',
        cache: false,
        success: AjaxSucceeded,
        error: AjaxFailed
    });


    function AjaxSucceeded(result) {
        alert("hello");
        alert(result.d);
    }

    function AjaxFailed(result) {
        alert("hello1");
        alert(result.status + ' ' + result.statusText);
    }

My First Edit I am adding JqueryOpeartion.aspx page coding

protected void Page_Load(object sender, EventArgs e)
    {
        test();
    }
 private void test()
    {
        Response.Write("<script language='javascript'>alert('Record Deleted');</script>");
    }

I need this string ("Record deleted ") after successfully deletion. I am able to delete content but I am not getting this message. Is this correct or and I am doing any mistake. Please suggest me correct way so I can solve this issue.

Please help me.

share|improve this question
1  
Can you run the output of JqueryOperation.aspx through a JSON validator and see if it valid JSON – parapura rajkumar May 31 '11 at 11:19
1  
Like jsonlint.com . You also have to check the parameters you send. Currently you have not set any parameter name. If the parameter is TwitterId, then you have to pass an object to data, not a string: data: {TwitterId: row}. – Felix Kling May 31 '11 at 11:21
2  
Does the Jqueryoperation.aspx page return (valid) JSON? – Salman A May 31 '11 at 11:24
probably your server side code is throwing an exception .. what r u returning in your catch block as the response? – Raghav May 31 '11 at 11:28
1  
@Raghav, if the server threw an exception processing the request, then the HTTP return code would be 500. – StuperUser May 31 '11 at 11:30
show 3 more comments

4 Answers

up vote 48 down vote accepted

When you specify:

dataType: 'json',

jQuery will fire the error event if the response cannot be parsed as JSON, even if server returns 200 OK. Check the data returned from the server and make sure it is valid JSON (try JSONLint service).

If the returned data is not JSON or it has syntax errors then fix them in your server side code. You can just return {} from the server side script.

Note that inside the error event, parameter 2 and 3 will contain details about the error. In case of JSON parsing error the parameter 2 will contain parsererror.

share|improve this answer
Thanks for your response can you please tell me one thing how can i return json value from code behind. I am using Asp.net with C#. This solved my issue but can please also let me know this thing also. – Pankaj Mishra May 31 '11 at 11:37
Use the Json Class may be? – Salman A May 31 '11 at 11:40
Now I have added more code please check and reply me if possible. – Pankaj Mishra Jun 1 '11 at 8:59
@Pankaj: it is better if you post it as another question. But short answer: two ways of doing this (i) instead of $.ajax you can try $.getScript. Inside the server side C# script just put alert('Record Deleted'); (no <script> tag) and set the ContentType of your C# script to text/javascript. $.ajax might also work but I cannot recall how, may be you just need to change dataType: 'script',. You may not need the success handler anymore. – Salman A Jun 1 '11 at 9:13
(ii) do a Response.Write("{\"success\": 1, \"message\": \"Record Deleted\"}"); in your server side C# script. Write your $.ajax success handler like this: function AjaxSucceeded(result) {alert(result.success + ' ' + result.message);} – Salman A Jun 1 '11 at 9:16
show 3 more comments

I reckon your aspx page doesn't return a JSON object. Your page should do something like this (page_load)

   var jSon = new JavaScriptSerializer();
    var OutPut = jSon.Serialize(<your object>);

    Response.Write(OutPut);

Also, try and change your AjaxFailed:

function AjaxFailed (XMLHttpRequest, textStatus) {

                }

textStatus should tell you what kind of error you're getting.

share|improve this answer

I've had some good luck with using multiple, space-separated dataTypes (Jquery 1.5+). As in:

$.ajax({
    type: 'POST',
    url: 'Jqueryoperation.aspx?Operation=DeleteRow',
    contentType: 'application/json; charset=utf-8',
    data: json,
    dataType: 'text json',
    cache: false,
    success: AjaxSucceeded,
    error: AjaxFailed
});
share|improve this answer

Try following

$.ajax({
    type: 'POST',
    url: 'Jqueryoperation.aspx?Operation=DeleteRow',
    contentType: 'application/json; charset=utf-8',
    data: { "Operation" : "DeleteRow", 
            "TwitterId" : 1 },
    dataType: 'json',
    cache: false,
    success: AjaxSucceeded,
    error: AjaxFailed
});

OR

$.ajax({
    type: 'POST',
    url: 'Jqueryoperation.aspx?Operation=DeleteRow&TwitterId=1',
    contentType: 'application/json; charset=utf-8',
    dataType: 'json',
    cache: false,
    success: AjaxSucceeded,
    error: AjaxFailed
});

Use double quotes instead of single quotes in JSON object. I think this will solve the issue.

share|improve this answer

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.