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.
如果我想在获得一些信息后重定向到某个页面怎么办。其实我需要一个搜索框。然后我将在某些操作中获取输入的信息,然后想要重定向到任何页面。我怎样才能做到这一点?
在您的操作中,添加以下代码:
return RedirectToAction("ActionName", "ControllerName", new { parameter1 = "something", parameter2 = "something else" });