Skip to content Skip to sidebar Skip to footer

Http Error On Adding Large Data Using Jquery Ajax

I have created a good html/javascript program in displaying ajax in my jqgrid. But just recently, I noticed that when I try to save large or many data to save to my table line, it

Solution 1:

your are using the Query string to pass the data - the Query string size is limited (http://en.wikipedia.org/wiki/Query_string) I recommend on passing the data as post:

$.ajax({type:'POST',url:url,data:data,success:success,dataType:dataType});

you can also read about Jquery post (http://api.jquery.com/jQuery.post/)

Post a Comment for "Http Error On Adding Large Data Using Jquery Ajax"