ASP.NET AJAX Progress Bar Control
If you use AJAX in your web app's, you no doubt have made use of some sort of progress/status indicator that lets the user know that some operation is currently executing. In the app I am currently working on we use an animated gif for this. It works great, but sometimes you might find it nice to have more control over the indicator - i.e. interacting with it via JavaScript and styling it using CSS. So I did a little research and found a nice example of one built using script.aculo.us. The demo page looked great so I downloaded the source to get a feel for how it worked. I liked what I saw so I thought I would create a new AjaxControlToolkit control based on this example. My original goal was just to port it over to ASP.NET, but as I started playing around with it I thought I...