在 MVC3 中,我有一个名为 test 的区域,带有默认路由
context.MapRoute(
"test_default",
"test/{controller}/{action}/{id}",
new {controller="Store", action = "Index", id = UrlParameter.Optional },
new string[] { "foo.test.Controllers" }
);
@Html.ActionLink("Retour au magasin", "index", "Store") 生成 localhost:1111/test
在索引页面中,我有一个部分视图,位于文件夹 test/views/shared 但它永远不会渲染,因为找不到文件夹。
链接http://localhost:1111/test/store/index运行良好。我怎样才能找到为 http:/localhost:1111/test 找到并渲染的部分视图?或者我怎样才能得到由actionlink生成的链接http://localhost:1111/test/Store/index ?
谢谢