Hour glass while web app is busy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Just wondering if there is a way to set up a web application where the curser
turns into an hour glass when the application is busy, for example processing
a stored procedure on a server that takes several seconds?
Thanks.
 
Paul said:
Just wondering if there is a way to set up a web application where the
curser
turns into an hour glass when the application is busy, for example
processing
a stored procedure on a server that takes several seconds?

Paul, in general, all of that is up to the browser.

Take a look at the following to see how to get the browser to do what you
want:

Indicating Progress
(http://msdn.microsoft.com/library/d...serverprogressfromaspnetclientapplication.asp)

Make a Progress Indicator For Slow-Loading Pages
(http://www.aspnetpro.com/NewsletterArticle/2003/08/asp200308bm_l/asp200308bm_l.asp)

DESIGN PATTERNS: Asynchronous Wait State Pattern in ASP.NET
http://msdn.microsoft.com/msdnmag/issues/03/12/designpatterns/default.aspx
 
Back
Top