I'm trying to use Html.RenderAction in ASP.NET MVC 2 RC2 in this way:
In Menu Controler:
[ChildActionOnly]
public ActionResult ContentPageMenus()
{
var menus = _contentPageMenuRepository.GetAll().WithCulture(CurrentCulture);
return PartialView(menus);
}
And in my Index view (for Index action of Home controller):
<% Html.RenderAction("ContentPageMenus", "ContentPageMenu");%>
But I always get this error message:
No route in the route table matches the supplied values.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…