Click to See Complete Forum and Search --> : New - Moving large amounts of data


timothyhahn
12-27-2005, 10:52 PM
Thanks for taking the time time read this. My issue is with Javascript and the need to transfer a large amount of data from the server to the web client and back. We are also using JSPs. There seems to be some degree of limitation in the amount of data that can be sent. Is there a way, such as placing the data into an array and simply moving the array, or some other trick, that would make this process easier? Any tips, tricks, or recommendations would be very welcome.

Thanks
Tim

methodpg
12-28-2005, 05:14 AM
Do you know about XMLHttp requests in Javascript? (Essentially... what is being called 'AJAX' lately)

Using this you can get the client-side scripting to send segments of data to a back-end (server-side) script.