Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 MVC 应用程序中有一个Html.BeginForm。当用户单击提交按钮时,如果一切正常,我希望将用户发送到特定视图。谁能告诉我如何让用户转到已经定义的视图(以及将用户引导到当前控制器之外的视图的解决方案)。
Html.BeginForm
非常感谢任何帮助。
您可以使用 RedirectToAction() 将用户重定向到其他操作和控制器。
之后,您验证模型状态,调用
Return RedirectToAction("Index","Home")
重定向到“主页”控制器和“索引”操作。您还可以传递其他参数。