Hi, I have a MVC web application. I am calling the controller method through the getJSON() method of the jquery.
$.getJSON("applicationurl/controllerActionMethod", { parameter1: json, parameter2: jsonGrid, parameter3: value3, parameter4: value4 }, function(jsonResult) {
});
Here I am passing the json values into the parameter1 and parameter2. The problem is that when length of the parameter2 is more than 2500 then it does call the controllActionMethod.
I have also used the $.ajax method instead of getJSON(), however it also does not work.