Reputation: 4739
Hey guys. Basically I need to dump and incredible amount of tables and text to a web page. I'm pulling the information from a database. All the querying is done and the page loads with all the tables in place. I would like to instantly load the page and then start pulling the information down if that's possible. Or possibly lazy load the tables. Thanks for any help.
I'm putting all the information to the page via a string builder.
Thanks for the help
Upvotes: 2
Views: 157
Reputation: 6825
You can load the data into a div that was display:none then display it back using some button with display:block. Where the data is already formatted as what you like. Use may JQuery so you can load it with animation or use its ajax.
Upvotes: 1