0
I’m having a hard time making a simple feature. I have an area called "project":
The goal is simple: I need to create an Html.Actionlink that generates a link to return the home page that is OUTSIDE the project area, such as the root of the site. I tried to call it that:
@Html.Action("ACTION","CONTROLLER")
Code of controller
:
// GET: Relatorio
public ActionResult ModalRelMapaAeronave()
{
return PartialView("ModalRelMapaAeronave");
}
But it’s not being called the right view. What’s the right way to call?
Enter the code of the Controller method that calls a particular one
View
!!! I wonder is arriving on the route?– novic
It’s not enough, it goes wrong, it adds up the value of the area on the route I want, when I want to call the direct route from the root.
– Luiz Santos
ModalRelMapaAeronave
is in whichController
?– JcSaint
The solution of the River worked, looked at the root. Thanks guys
– Luiz Santos