Hi Folks,
I have a requirement where I need to load data in a page from database. It is a huge page and there are many stored procedures because page has different sections.
I planned to keep all the sections in differnet update panels. But problem with update panel is only 1 asynch request can be processed at a time. Thanks to some post, I got it working.
But I still cannot run request simultaneously. Currently it is done one by one and user has to wait until all sections are loaded to see the page. Instead I want to show data in 1st section, and some kind of progress bar in 2nd section and when it is complete show data there meanwhile section 3 has a progress bar. In this way user doesn't has to wait for the entire page.
Can anyone help me with this?