This is probably a simple question but how can I best use an ajax Loader in ASP.NET to provide a loading dialog whilst the page is being built.
I currently have a UpdatePanel with an associated UpdateProgressPanel which contins the loading message and gif in a ProgressTemplate.
Currently I have a page that onLoad() goes and gets the business entities and then displays them. While it is doing this I would like to display an Ajax Loader.
Would it be better to having nothing in the page load and have a hidden button that is triggered onLoadComplete or unLoad() which would then wait for the button click methopd to complete displaying the UpdateProgressPanel?
Thanks
