从post回传递值到RedirectToAction获取

时间:2013-10-23 13:13:33

标签: c# asp.net-mvc

使用MVC - '索引'函数加载页面,值返回'IndexPost',进行更新,并在帖子结束时重新加载索引。

return RedirectToAction("Index");

如果在帖子中进行了事件更新,我想在原始的'index'函数中进行更改,这样就需要将值从post传递给get ....

之类的东西
return RedirectToAction("Index", userId);

然后在原来的get:

public ActionResult Index(int? userId)

如何做到这一点? 谢谢你

1 个答案:

答案 0 :(得分:3)

如果我理解你的问题,你必须使用

return RedirectToAction("Index", new { userId = userId } );