我有一个 MVC3 项目,我的文件夹中有一个“子”文件Controllers
夹。现在我想创建一个到该子文件夹内的控制器的路由。但我该怎么做?
这似乎对我不起作用:
context.MapRoute("Test", "SubFolder/Test",
new { Controller = "SubFolder/Test", Action = "Index" });
所以子文件夹的名称是SubFolder
,在那里我有一个名为TestController.cs
. 我怎样才能为此创建一个 MapRoute?