Does ASP.NET MVC Framework support asynchronous page execution? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:08:12Z http://stackoverflow.com/feeds/question/275545 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution 2 Does ASP.NET MVC Framework support asynchronous page execution? Morgan Cheng 2008-11-09T03:11:32Z 2009-11-22T02:00:58Z <p>I'm learning ASP.NET MVC Framework, From some articles like <a href="http://weblogs.asp.net/stephenwalther/archive/2008/03/17/asp-net-mvc-in-depth-the-life-of-an-asp-net-mvc-request.aspx" rel="nofollow">this</a>, it seems that MvcHandler has only Execute() implemented, there is no asynchronous API implemented. Actually, I don't think Controller has asynchronous API either.</p> <p>So, ASP.NET MVC doesn't support asynchronous programming? this could be a big hurdle to scalability if the web page needs I/O operation.</p> http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution/275580#275580 3 Answer by Brad Wilson for Does ASP.NET MVC Framework support asynchronous page execution? Brad Wilson 2008-11-09T03:57:48Z 2008-11-09T03:57:48Z <p>At the moment, async support is not built into MVC. It's on the feature list, but no guarantees as to exactly when it might be released (and in what form).</p> http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution/275581#275581 5 Answer by Morgan Cheng for Does ASP.NET MVC Framework support asynchronous page execution? Morgan Cheng 2008-11-09T03:59:38Z 2008-11-09T03:59:38Z <p>After some googling, I found this terrific blog about how to DIY asynchronous ASP.NET MVC. The implementation looks easy and straightforward. I am wondering why ASP.NET MVC team doesn't have this feature at the first time.</p> <p><a href="http://blog.codeville.net/2008/04/05/improve-scalability-in-aspnet-mvc-using-asynchronous-requests/" rel="nofollow">http://blog.codeville.net/2008/04/05/improve-scalability-in-aspnet-mvc-using-asynchronous-requests/</a></p> http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution/609511#609511 1 Answer by Andrew Csontos for Does ASP.NET MVC Framework support asynchronous page execution? Andrew Csontos 2009-03-04T07:07:07Z 2009-03-04T07:07:07Z <p>As Brad mentioned, Microsoft is working on a solution as part of MVC futures. There is also an implementation at: <a href="http://code.msdn.microsoft.com/AsyncMvc/Wiki/View.aspx?id=11350" rel="nofollow">http://code.msdn.microsoft.com/AsyncMvc/Wiki/View.aspx?id=11350</a></p> http://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution/1777539#1777539 0 Answer by Pita.O for Does ASP.NET MVC Framework support asynchronous page execution? Pita.O 2009-11-22T02:00:58Z 2009-11-22T02:00:58Z <p>ASP.NET MVC 2 has now incorporated asnyc controller from the beat release. Check it out.</p>