vote up 0 vote down star

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

flag

3 Answers

vote up 1 vote down check

I've done something similar with a Timer control. Your OnLoad just turns on the timer, and the page finishes rendering. Then the timer (with some minimal interval value) does the dirty work, showing the progress panel correctly. Remember to turn off the timer as the last step of the process.

link|flag
vote up 5 vote down

You can do it in HTML outside of .Net. In your ASPX page you have code like:

<div id="loading">
<!-- Animated GIF or other indication that stuff is happening -->
</div>

At the very bottom of your page, right before the you can have a code snippet that looks like this:

<script language="javascript">
document.getElementById("loading").style.display = "none";
</script>

The graphic--- as long as it's at the top of the page--- will render first. Then all of your onLoad stuff will happen, and finally the inline JavaScript will happen last since it's at the bottom of the page.

A lot of times I'll disable the buttons in their unloaded state and enable them in that bottom JavaScript too. That prevents the user from getting click happy and triggering events before the page is ready.

link|flag
vote up 0 vote down

http://rvsg.net/images

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.