我正在使用 asp.net mvc4 构建一个 webapge。对于组织,我想将一些控制器放在 Controllers 文件夹的子文件夹中。例如:
Controllers
AccountController
BlahController
Dashboard (Folder)
ChickenController
BeefController
要使用 BeefController (返回部分视图),似乎我应该使用:
@Html.Action("Index", "Dashboard/BeefDashboard")
然而,这让我得到以下错误:
The controller for path '/' was not found or does not implement IController.
我将如何使用 BeefController?