0

The right panel in the page which is full of banners need to load before or side-by-side the left panel. The problem is that left panel is full of data and it's taking so much time to load so the right panel never show up before the left panel loading completes. Can somesone tell me how to load the right panel first or side by side??

Zubarik
  • 107
  • 1
  • 2
  • 9
  • See the link below perhaps it can help you [http://stackoverflow.com/questions/11645582/asyncronously-load-panels-using-jquery-in-asp-net-application][1] [1]: http://stackoverflow.com/questions/11645582/asyncronously-load-panels-using-jquery-in-asp-net-application – عثمان غني Sep 21 '12 at 12:26
  • I don't get it. How can <%@ Page EnableSessionState="False" %> solve my problem?? – Zubarik Sep 21 '12 at 12:36

1 Answers1

0

You could use the jQuery load() function and have your panels in external aspx files:

http://api.jquery.com/load

This technique would load the panels at approximately the same time.

I am assuming that you don't have any server-side event handling in your panels...

Steven Hunt
  • 2,321
  • 19
  • 18
  • @Steave Can you please explain how can I use load because both my panels are made from repeaters server side and I don't understand how to use load at client side because the panel is still not loaded. – Zubarik Sep 22 '12 at 08:33