I am calling a method in MVC controller using $.post. i am passing an array of object to the controller using post method. when the length of the array exceeds certain number, i think aroung 136 the method in MVC controller is not getting called. i am not getting any error as well. so can anyone please provide me a solution for it. i have attached the sample code below
$http.post('Controller/Method', {
data: CollectionOfObject
}).
success(function (data, status, headers, config) {
alert("success");
}).
error(function (data, status, headers, config) {
alert("error");
});
thanks in advance
$http
post?