使用区域时定位视图失败

时间:2011-01-14 18:02:49

标签: asp.net asp.net-mvc-3

我的项目中有一个区域但视图引擎无法找到我的视图,它不会在我的区域目录中查找视图?

未找到视图“索引”或其主控,或者没有视图引擎支持搜索的位置。搜索了以下位置: 〜/查看/富/的Index.aspx 〜/查看/富/ Index.ascx 〜/查看/共享/的Index.aspx 〜/查看/共享/ Index.ascx 〜/查看/富/ Index.cshtml 〜/查看/富/ Index.vbhtml 〜/查看/共享/ Index.cshtml 〜/查看/共享/ Index.vbhtml

1 个答案:

答案 0 :(得分:0)

您必须在创建ActionLinks时指定要使用的区域,并且如果您要在区域外注册路线。

<%=Html.ActionLink("Test", "Action", "Controller", new { area = "MyArea" }, null) %>