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 3.0 中不使用 ACtionLink,我们必须使用 RedirectAction 方法。我们怎么能这样做?
RedirectAction("Index", "Home");
您不能从控制器执行客户端操作。
您需要先打开窗口才能执行导致 RedirectToAction 的操作。
或者重定向到包含模型中的操作的页面,并使用它来打开带有脚本的窗口。