Images

  • Thread starter Thread starter Leonzio
  • Start date Start date
L

Leonzio

I have a Webpage that dynamically loads a series of
thumbnail images from a
SQL database into a placeholder. The problem I have is
that the page
displays before all the images have been populated and
hence you can see the
images slowly populating on screen.

the question I have is how do you prevent a page from
displaying until all
the images have been downloaded completely.
 
Try setting the response buffer to be false. Alternatively, load them into
the placeholder in a div off screen and move the div on screen as the body
onload client side event actions

--
Regards

John Timney
ASP.NET MVP
Microsoft Regional Director
 
Back
Top