A page executes a number of tasks and takes a long time to process. We want to give the user feedback as each task is completed.
In ASP.NET webforms we used Response.Flush()
What way would you a approach this in ASP.NET MVC?
|
A page executes a number of tasks and takes a long time to process. We want to give the user feedback as each task is completed. In ASP.NET webforms we used What way would you a approach this in ASP.NET MVC? |
||||
|
|
|
You can still use Response.Write() and Response.Flush() for whatever status you want to send down the wire. Or if you have your progress thingy in a user-control, you could do something like:
from your controller while doing your lengthy operation in the controller's action method. It's up to you to choose this or the client-side approach as mentioned in the comments here, just wanted to point out that server-side is still possible. |
|||||
|
|
I would suggest to use AJAX for displaying progress. See links for ideas: |
|||
|
|
|
There are two basic ways:
|
|||
|
|
|
Me personally I would consider two optoins:
|
|||
|
|
|
You can make it in client side. In each step, you set some session variable with the current step. Then, You make another action in your controller say called: "GetProgress" and assign a view and URI for it. In the action, you will check this session and return the current progress of your task. In the client side, make a timer (i.e setTimeOut) and you invoke the URI of the later controller action every specific amount of time - 1 second or so. That is it. |
||||
|
|