I have a page that displays a gridview with some checkboxes and drop-down lists to filter the results. However, the trip to the database to get the data that the gridview binds to can be lengthy.
I tried methods from various examples of in-process "Updating..." messages but they all seem to be for postbacks. Things like animated "Processing..." panels that are done Gmail-uploading style, etc - but I need something that works when the page is loading for the first time.
It's pretty simple ASP.NET (up to 3.5) with a little bit of AJAX and VB code-behind.
Any solution for this page has to be 'modular' enough that it can be implemented on other pages that are going to be FAR more complex later on in this project's life.