i have referenced this topic , doesn't solve problem.   i'm using mvc 5 c#. have used code receive data server data type json .   $.ajax({    url: "/mycontroller/myaction",    type: "post",    datatype: "json",    success: function (data) {       if (data.result) {          alert('successfull');       }       else {          alert(data.ex);       }    } });   and controller code:   [httppost] public actionresult myaction() {    try    {       return json(new { result = "true", ex = "" });    }    catch (exception e)    {       return json(new { result = "false", ex = e.message });    } }   i use way data type html:   $.ajax({    url: "/mycontroller/myaction",    type: "post",    datatype: "html",    success: function (data) {       $(".mydiv").append(data);    } });   and controller should be:   [httppost] public actionresult myaction() {    return partialview("_...
 
Comments
Post a Comment