I have an ASP.Net MVC project that is divided into "areas"
When viewing in area "A" I want to do a partial view through the controller in area "B".
I have the following inside the viewport "A"
Html.RenderAction("Index", "AreaBHome", new { Area="AreaB"});
This does not work.
Does anyone know how to do this?
jjc99 source share