I am getting an error when I use it like this
!{Html.RenderAction("Action", "Controller")}
I had to switch to webforms view engine and replace it with
<% Html.RenderAction("Action", "Nav"); %>
to get it to work.
The error I am getting is "Cannot convert void to char"