cannot implicitly convert type void to object. .NET MVC PartialViewResult

Solution 1:

Like this:

<p>
    @Html.Action(MVC.MeetingActions.ListActions(Model.MeetingId))
</p>

or if you insist on RenderAction like this:

<p>
    @{Html.RenderAction(MVC.MeetingActions.ListActions(Model.MeetingId));}
</p>

Personally I prefer the first, makes fewer keystrokes.

Solution 2:

Html.Partial should work as well :)

@Html.Partial("View", Model);