Multiple asynchronous views

Auth3nticK

New Member
I'm new to asp.net mvc 4 and I have a question regarding the new async/await feature. In this tutorial, the section 'Performing Multiple Operations in Parallel' returns the 3 types of lists (Product, Gizmo and Widget) as a single view.I'm trying to achieve the same sort of UI, except that my 3 lists would be 3 different views.The user would type a value in a searchbox and hit the search button to trigger a call to the asynchronous controller method. But that should return 3 different views, which is I believe not possible.Does it make sense then to have 3 partial views and to call three different async controller method? Would the views then appear on the screen as soon as the controller methods return?
 
Back
Top