我有以下 Html.ActionLink 调用:
@Html.ActionLink(linkText: "dothis", actionName: "Index", controllerName: "SelectActioncontroller", routeValues: new { actionController = "dothisController", actionName = "dothis", actionText = "dothis" }, htmlAttributes: null)
但结果我得到:
<a href="/SelectActioncontroller?actionController=dothisController&actionName=dothis&actionText=dothis">dothis</a>
出了什么问题,根据我到目前为止阅读的所有其他答案,这应该会导致:
<a href="/SelectActioncontroller/dothis?actionController=dothisController&actionName=dothis&actionText=dothis">dothis</a>
我想念什么?
我正在使用 VS2012 .net4.0 mvc4