Asynchronous call from ASP.NET Page

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

Guest

I am trying to make a call to a method from an ASPX page that takes a few
minutes to complete. During this time I would like the page to wait (show
gears turning like Sharepoint)... upon completion of the method call the
user will be redirected. Can someone provide guidance on how to do this?
 
FairlySane said:
I am trying to make a call to a method from an ASPX page that takes a few
minutes to complete. During this time I would like the page to wait (show
gears turning like Sharepoint)... upon completion of the method call the
user will be redirected. Can someone provide guidance on how to do this?

Perhaps some of the following will help you:

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

John Saunders
 
Back
Top