I\'ve got a large amound of data I\'m sending down to the client using jQuery\'s $.ajax() function. I\'m calling a method in a ASP.NET web service that returns the JSON data
add this snippet to web.config :
and in your c# code:
JavaScriptSerializer jss = new JavaScriptSerializer(); jss.MaxJsonLength = Int32.MaxValue; ... ...