我需要重定向到以下重定向:
area = User
controller = "Server"
action = "Index"
page = "F222"
但是我无法在RedirectToAction中看到允许我添加区域的重载。有人能给我一个如何做到这一点的例子吗?
由于
答案 0 :(得分:1)
如果要在路线中添加区域,请使用overload with routeValues:
return RedirectToAction("Index", "Server", new {Area = "User", page = "F222"});