How can I send large strings to the server?
I would like to read a table with enough data, take the html and send it to the server. How can I do that?
How can I send large strings to the server?
I would like to read a table with enough data, take the html and send it to the server. How can I do that?
You can use paging to not request all the data at one time, but for small groups. Some framworks APIs support default paging.
By performance I do not think it is good to send large amounts of data to the client, it is better to leave heavy processing jobs to the server and that the client receives a set of data already processed.