我不确定 Areas 是 VS11 还是 MVC4 的一部分,但它似乎非常适合组织一个大项目。但是我在链接到区域中的控制器时遇到了麻烦。
编辑:现在可以使用并且代码已更新
这里有我的项目的截图http://www.gratisimage.dk/graphic/images/2011/October/30/724D_4EAD44CD.jpg
我有 2 个链接
@Html.ActionLink("Create Vehicle", "CreateVehicle", "Vehicle", new { area = "Units" }, null)
@Html.ActionLink("Index", "Index", "Vehicle", new { area = "Units" }, null)
还有我的控制器
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace unoeurotest.Areas.Units.Controllers
{
public class VehicleController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult CreateVehicle()
{
return View();
}
}
}