Is ASP.NET MVC Built on top of IHttpAsyncHandler? I'm implementing some web processing code and, for some reason end up building a kinda MVC framework. So, for that reason is the question, is ASP.NET controller choice mechanism built on top of that handler or is something more complex.
问问题
177 次
1 回答
1
The Controller class not, the AsyncController class yes. So if you have some I/O intensive operations you could perform them in an asynchronous controller.
于 2012-09-21T05:36:44.667 回答