Can a partial view be rendered asynchronously?
I have a partial view that needs to render blog posts. The blog posts are returned asynchronously.
In my _Layout
file I render my partial footer _Footer
. In _Footer
I have the following markup:
@Html.Action("FooterLatestBlogPosts", "Common")
So in my Common
controller I have the following action method:
public async Task<ActionResult> FooterLatestBlogPosts()
{
List<ArticleDTO> articleDTOs = await articleTask.GetAllAsync();
return PartialView(articleDTOs);
}
In my FooterLatestBlogPosts
partial view I have the following:
@model List<MyProject.Application.DTO.ArticleDTO>
@if (Model.Count > 0)
{
<ul class="list-unstyled">
@foreach (var articleDTO in Model)
{
<li>@articleDTO.Title</li>
}
</ul>
}
I'm getting an error:
Error executing child request for handler 'System.Web.Mvc.HttpHandlerUtil+ServerExecuteHttpHandlerAsyncWrapper'
Should I rather just create a synchronous mthod to bring back my data?