Click here to Skip to main content
15,888,199 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all,
I have a main parent page with several "widget" iframes. ClientSide JavaScript sets SRC attribute of these iframes so they can load at the same time. The problem is: if one of the iframes (they're all loaded from the same IIS server and really are ASPX pages) is taking a lot to load - it blocks the rest from loading. Is there a way to make multiple HTTP requests to the server at the same time?
Posted

1 solution

It's IE that limits the number of connections to your server:
http://blogs.msdn.com/b/ie/archive/2005/04/11/407189.aspx[^]

Best regards
Espen Harlinn
 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 25-Oct-11 19:49pm    
Wow, never this this about IE, maybe because I rarely use it. My 5.
--SA
Espen Harlinn 26-Oct-11 4:26am    
Thanks, Sergey - that browsers should limit the number of connections is part of RFC2616
Simon Bang Terkildsen 25-Oct-11 22:26pm    
+5!!
Espen Harlinn 26-Oct-11 4:27am    
Thank you, Simon :)
Trekstuff 26-Oct-11 11:32am    
IE surely picks and chooses when to follow standards. I even tried registry hack to increase number of connections, but it seems to work only on the first load. After that I guess all connections are used up.
What about delayed load? Let IE keep it limit, but make slowest iframe load last? What would be the best way to do it? Thanks for the IE info, btw +5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900