I have an action child, which I use to invoke a view in a layout, but when using the @ HTML.Action , it tells me that the controller that happened to it has not been found.
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-bell"></i> <b class="caret"></b></a>
<ul class="dropdown-menu alert-dropdown">
@Html.Action("Not", "EntrevistaIdiomaController");
</ul>
</li>
My action result child
[ChildActionOnly]
public ActionResult Not()
{
return PartialView("_Notificacion", m_entrevistaIdiomaDAO.TodosXFecha());
}
The error