我有一个跨区域共享的局部视图。这个视图有(或者想要)像这样的ActionLink:
@Html.ActionLink(model.property1, "ActionName", "ControllerName", null, new
{
@id = model.property1,
@class = "someClass",
@style = "text-decoration: underline; color: blue; cursor: pointer;"
})
如何更改“ControllerName”以了解调用它的实际控制器?
答案 0 :(得分:0)
只省略第3个参数(“ControllerName”)。如果您的in视图是从HomeController中的方法生成的,则链接将生成为/Home/ActionName
。