I have code in my Page_load method that can take up to a few seconds to fetch back the data and store it into a table.
How can I display a percentage (or just generic) loading bar until all the data is ready, as oposed to just having the empty table until the data is ready?
Is there an asp control dedicated to progress bars?
If you simply want to show the data, you may use ana ajax call to server on the dom ready If event and show it
And you should have a getdata.aspx page which returns the HTML markup you wish to display.
You may alternatively use
ashxhandlers to get the HTML Markup data. (this is my preference)This solution needs
jQuerylibrary to be included in your page.