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.
我为我的应用程序使用 ASP.NET MVC 4。我使用重定向到另一个页面。但它不起作用。为什么?
return RedirectToAction("Edit", new { id = x.EmployeeID });
您还需要添加区域:
return RedirectToAction("Edit", new { id = x.EmployeeID, area = "Your_Area_Name" });
那应该将您转移到该区域,但您还需要将控制器提供给RedirectToAction.
RedirectToAction