How do you get a page that takes a long time to load to display the first part of its contents once you reach a certain point in the code (instead of waiting till the end and loading the whole page at once)?
All website show up as it's loading... the problem you are having is caused due to improper HTML.. If you have tables and there is an object within one of the cells that is taking large amounts of time to load, it will not show the entire table until it is done. Try and save your large file downloads until the end of the HTML document if at all possible.
if the page is taking a while to load because of some ASP code, you can call Response.Flush to show the page up to that point - you must first state Response.Buffer = True at the top of your page though.
=========================================================
if (!succeed) try();
-jeff
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.