.cshtml の私のアクション リンクは次のようになります。
@Html.ActionLink("Reply", "Post_Reply", new { item.ID, item.Post_ID, item.Reply_ID })
コントローラーの私のメソッドは次のようなものです:
[Authorize]
public ActionResult Post_Reply(int PostId=0, int Id = 0, int ReplyId = 0)
{
post posts = new post();
posts.ID = Id;
return View(posts);
}
しかし、item.IDの値のみが渡され、他の2つの値item.Post_IDとitem.Reply_IDは渡されません..誰か私を案内してもらえますか..ありがとう..