我有一个重定向到另一个操作的操作:
public ActionResult Create(Score score)
{
score.DateOfSubmit = DateTime.Now.Date;
obj.AddNewScore(score);
obj.Save();
return RedirectToAction("Index", "Score");
}
我想在最后一行将一个 id 传递给 索引 Action 。那么如何将 id 传递给索引 Action 。
最佳答案
return RedirectToAction("Index", "Score", new { id = score.Id });
关于c# - 将值传递给 Controller 中的操作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22732313/