I have an ASP.Net MVC project that is split into ‘areas’
On a view in area ‘A’ I wish to render a partial view via a controller within area ‘B’.
I have the following within my View inside area ‘A’
Html.RenderAction("Index", "AreaBHome", new { Area="AreaB"});
This doesn’t seem to work.
Does anyone know how to do this?
use this
or this