The problem is that when you add parameter values ββto the action link, you must also add HTML attributes, use this:
@Html.ActionLink("Reply", "Post_Reply", new { Id = item.ID, PostId = item.Post_ID, ReplyId = item.Reply_ID }, null)
Adding a Null value for Html attributes will allow you to send the correct parameters
Cd smith
source share