Posted on: 8/8/2014 11:43:09 PM | Views : 516

I have a massive, nasty grid that takes like 2 minutes to load.
I want to use an updatepanel and updateprogress to let the user know we are processing his request.
I don't want to respond to a button click.  I want the "spinner" to come up by itself, and go away when the data is loaded.
This means that the update progress is seen whenever the page data is loading, triggered by page_load, or page_init or something.
This is my page.
<!-- Required ScriptManager to handle the loading progress --> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <!-- Your UpdateProgress Control --> <asp:UpdateProgress ID="prgLoadingStatus" runat="server" DynamicLayout="true"> <ProgressTemplate> Please wait... </ProgressTemplate> </asp:UpdateProgress> ...

Go to the complete details ...