如何从mvc 4中的另一个视图重定向到视图

时间:2013-11-03 12:23:14

标签: asp.net-mvc asp.net-mvc-4 redirect asp.net-mvc-routing

我有一个包含一些数据的表。我想这样做我单击行中的编辑按钮并使用该记录的Id重定向到UserCustomerCommunication视图。但是当我点击它时,试着把我送到同一个视图中的某个地方。我该如何设置网址路由?你有什么建议吗? 这是我在GetCustomerCommunicationResult视图的索引中的编辑按钮重定向代码:

     @Html.ActionLink("Düzenle", "Edit", new { id = item.CommunicationId }) |

enter image description here

1 个答案:

答案 0 :(得分:1)

您无法从视图重定向到视图,但您可以使用操作方法(甚至可以从其他控制器)。使用ActionLink的这个重载来准确指定要重定向的位置。

@Html.ActionLink("Düzenle", "Edit", "ControllerName", new { id = item.CommunicationId}, null)

最后一个参数是html attrributes,因为你没有传递任何东西,所以将它设置为null。