有人可以告诉我是否可以从任何视图调用属于另一个视图的编辑控制器。我尝试了以下方法:
<input type="button" value =" Ship?" style= "height: auto; width: auto" ONCLICK="window.location.href = '/Dispatch/Edit'">
当编辑查找我通常作为@ActionLink执行的id或主键时,会发生错误。
答案 0 :(得分:0)
你绝对可以这样做。
尝试:
@Html.ActionLink
或者:
@Url.Action
以上两种都有接受控制器和操作的重载。
如果您正在执行POST,则以下控制器和操作参数也会过载:
@using(Html.BeginForm(...))
{
...
}