-2

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

return RedirectToAction("Index");

如果在帖子中进行了事件更新,我想在原始的“索引”函数中进行更改,为此需要将帖子中的值传递给 get.... 之类的

return RedirectToAction("Index", userId);

然后在原始得到:

public ActionResult Index(int? userId)

如何才能做到这一点?谢谢你

4

1 回答 1

3

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

return RedirectToAction("Index", new { userId = userId } );
于 2013-10-23T13:16:20.847 回答