Double Buffering in ASP.NET

  • Thread starter Thread starter Sandeep
  • Start date Start date
S

Sandeep

Hi

Is there anything like double buffering in asp.net ,I have a problem that i
have 3 frames on page
I want that whole page should appear when all pages have been loaded till
that period there should be some
Image or Graphics Displayed

Regards

Sandeep Saxena
 
no. the browser treats each frame as a seperate window with async
processing. also as most browsers limit themselves to two concurrent
connections, 3 frames can not be loaded at once (images added more
connection management).

-- bruce (sqlwork.com)
 
Back
Top