I'm having a hard time making a simple functionality. I have an area called "project":
Thegoalissimple:IneedtocreateanHtml.ActionLinkthatgeneratesalinktoreturnthehomepagethatisOUTSIDEoftheprojectarea,suchasthesiteroot.Itriedtocallitlikethis:
@Html.Action("ACTION","CONTROLLER")
Code of controller
:
// GET: Relatorio
public ActionResult ModalRelMapaAeronave()
{
return PartialView("ModalRelMapaAeronave");
}
But the correct view is not being called. What is the correct way to call?