Microsoft has included the AsyncController to the latest beta version of the Mvc framework. I'm currently working on a project where we have to use Asp.net MVC v1.0. There is a long-running process in the application (large file upload, some processing and then saving a large amount of data in the database). I have found some tutorials about how to use the new asynchronous controller, but not sure if I can (have to) use the one included in the Mvc Futures library (for v1.0) in the same way, or are there any differences?
Also, are there any alternative ways of handling such long operations in Asp.Mvc?
Thanks.
Edit
Beside @mkedobbs' link below, I've found these ones also helpful:
http://blog.codeville.net/2008/04/05/improve-scalability-in-aspnet-mvc-using-asynchronous-requests/