如何指定视图和参数的MVC RedirectToAction?

时间:2013-01-12 06:32:26

标签: asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

我需要重定向到以下重定向:

area = User
controller = "Server"
action = "Index"
page = "F222" 

但是我无法在RedirectToAction中看到允许我添加区域的重载。有人能给我一个如何做到这一点的例子吗?

由于

1 个答案:

答案 0 :(得分:1)

如果要在路线中添加区域,请使用overload with routeValues

return RedirectToAction("Index", "Server", new {Area = "User", page = "F222"});