Does ASP.NET MVC Framework support asynchronous page execution? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T06:08:12Zhttp://stackoverflow.com/feeds/question/275545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/275545/does-asp-net-mvc-framework-support-asynchronous-page-execution2Does ASP.NET MVC Framework support asynchronous page execution?Morgan Cheng2008-11-09T03:11:32Z2009-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#2755803Answer by Brad Wilson for Does ASP.NET MVC Framework support asynchronous page execution?Brad Wilson2008-11-09T03:57:48Z2008-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#2755815Answer by Morgan Cheng for Does ASP.NET MVC Framework support asynchronous page execution?Morgan Cheng2008-11-09T03:59:38Z2008-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#6095111Answer by Andrew Csontos for Does ASP.NET MVC Framework support asynchronous page execution?Andrew Csontos2009-03-04T07:07:07Z2009-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#17775390Answer by Pita.O for Does ASP.NET MVC Framework support asynchronous page execution?Pita.O2009-11-22T02:00:58Z2009-11-22T02:00:58Z<p>ASP.NET MVC 2 has now incorporated asnyc controller from the beat release. Check it out.</p>