Here is what I am trying to do. I have a website that allows users to queue requests that are queued in the table of jobs that the service receives and processes. I have a status column in the table that indicates whether the request will be queued for processing or for current processing by this service, or if the service has completed processing the request. The whole process takes several minutes.
I have an ASP.NET Status page in which I will need to show the current status of their request in real time. I want to show some kind of animation and indicate the current status. One way I could do this is to update meta-HTTP every x seconds, which checks the status of the request (I think sites like Expedia, Priceline do this?)
I would like to prevent a full page refresh and find an AJAX / JQuery solution. How to implement this? Poll the right approach?
source
share