[jQuery] Limits in Retrieving JSON with getJSON?

[jQuery] Limits in Retrieving JSON with getJSON?


I am trying to get data from a database.
I call an ASP page to retrieve a JSON recordset:
$.getJSON('getRecordset.asp', { my request data } , function(data)
{...
It works but the JSON object I receive gets cut at a point (if I call
the asp directly in the browser I see the whole recordset but via
HttpRequest I can't)
Example for n objects:
--------------------------------------------------------------
[ {object1}, {object2}, ....{object (n-?)},
And no more.
-------------------------------------------------------------
The whole recordset can be 40K characters. It gets cut at some point
between 14K and 15K chars.
¿Could anybody tell me if there's any limit with the amount of data I
can receive?
Thank you.