hi I have to create a website that load the data when page load so that website works without again redirecting it to server. that means when person open the website then only all the data is load and and then no post back is perform till user refreshes the url.
but using this methodology make the loading of the website very slow can anyone help me out how i can speed this process or increase the speed on my website
I have created this website in asp.net framework 3.5
Making a couple of guesses he is storing large amounts of data as arrays in his JavaScript for the site and trying to manipulate the DOM without a post back… Seems unlikely that this is being done without understanding AJAX / JSON, but I am guessing that is the answer he is looking for.
Basically: if you want a pattern which allows you to update the page without post-backs, and you don’t want to pre-populate the data because there is too much, then you use AJAX.