How to show contents of a page at a once.

  • Thread starter Thread starter gujarsachin2001
  • Start date Start date
G

gujarsachin2001

HI I have my home page which is contaiing more than 10 images. So on
calling that page it is shwing that images one by one on tht page.But
want to show all the images & content of page at a once. I have tried
using respose.buffer & response.flush() but it is not working. So can
anybody help me out..
Sachin.
 
Images in an HTML document are loaded when the browser requests them.
Ordinarily, the browser will request them in the order in which they appear
in the HTML, as the browser loads the page while it is still receiving the
HTML for the page. So, in order to have all of the images appear at once,
the browser must request them before it begins displaying them in the page.
This is typically called "preloading" the images, and there are several
techniques for doing this. See

http://www.google.com/search?hl=en&q=preload+images

--
HTH,

Kevin Spencer
Microsoft MVP
Software Composer
http://unclechutney.blogspot.com

The shortest distance between 2 points is a curve.
 
Back
Top