Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

displaying part of a page on page load

Status
Not open for further replies.

wrbodine

Programmer
Aug 24, 2000
302
US
Hi,

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)?

Thanks,
Ray
 
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.

Cheers,

Gorkem.
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top