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.
我在控制器中有这段代码
public ActionResult WhatWeDo() { return View(); }
但我需要创建重定向到其他页面。 我该怎么做?
您可以使用 RedirectToAction 方法。
RedirectToAction("action", "controller")
试一试
return Redirect("http://www.google.com");
希望能帮助到你