I have an asp.net page that needs to populate a treeview based on a directory structure. Rather than have the user stare at a blank page while creating the nodes I am trying to use UpdateProgress for a loading image.

Searching through various threads on the internet has given me a couple of different things I have tried, both of which have their own issues that I can't seem to resolve.

Option 1 uses the following javascript:

function pageLoad() {
        __doPostBack('btnBuildTree', '');
    }

This event is auto wired up and so I don't need to add an onload tag to the body element. For testing my code behind looks like this:

protected void btnBuildTree_Click(object sender, EventArgs e)
     {
           System.Threading.Thread.Sleep(5000);
           // minor code here to know it did something
     }

When I have it set up like this, the page loads, the update progress executes just as I want, and when btnBuildTree_Click finishes the UpdatePanel refreshes and everything is great, except it immediately kicks off another postback, fires the javascript pageLoad() function, which causes the btnBuildTree to postback, and so on.

Option 2 only has one change and that is to the javascript:

function buildTree() {
    __doPostBack('btnBuildTree', '');
    }

And I add this tag:

<body onload="buildTree()">

With this set up, the page loads, the btnBuildTree_Click event fires and does all of its work, and when it is finished, it does not cause another postback so I have no loop. The only drawback to this is the UpdateProgress never shows so it defeats the whole purpose of trying to give them a 'loading screen.'

I believe that I am simply missing something and I hope someone can point out what it is.

Thank you!

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Your pageLoad() function is called for all postbacks, including asynchronous postbacks. In the pageLoad() function you can add a logic to tell if the treeview has been displayed.

Assuming you will remove the loading indicator after the treeview is displayed, you can do something like:

function pageLoad() {
   var loading = $("#treeview-loading"); // Using jQuery to find the loading indicator.
   if (loading.get(0)) {
      __doPostBack('btnBuildTree', '');
   }
}
link|improve this answer
This helps a lot, thank you for giving me a direction to look in! – Brian Jun 30 '11 at 1:51
You're welcome! I'm glad I was able to help. – Paulus E Kurniawan Jun 30 '11 at 3:10
Ok, so I've created a HiddenField called 'loading' that I check for with your code (after I set up VS2008 to even use jquery...) Now I'm trying to remove the loading indicator and it is still returning a positive when i do 'if (loading.get(0)) {' I've tried setting the visible property to 'false' and setting the object to null but neither has worked, and I apologize in advance for the continued questions, but I don't normally do much with js... :) – Brian Jun 30 '11 at 16:07
Finally fiddled around with it enough and got it to work, thanks again! – Brian Jul 5 '11 at 13:29
feedback

How are you adding the js for pageload?

If this is added on Page_Load using RegisterStartupScript or similiar, add a !IsPostBack check so that it will not re-add itself everyime the btnBuildTree_Click eventhandler is called.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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