I am passing value from Html.ActionLink
to the controller. But the problem is in controller, value is not being fetched. I don't know what is the problem.
Here is my code :
View :
@Html.ActionLink("Copy", "Copy", "Item", new { id = item.Item_code}, null)
Contoller :
public ActionResult Copy(int id)
{
// Logic here
return View();
}