MVC - Passing Parameters from View to Popup
问题 I'm having a problem passing parameters from my view to my popup. In my view, I have the following razor code to render an Action Link wherein when I click it, a pop-up will appear: @Html.ActionLink("[Edit Product]", "Edit", "Products", new { ProductCode = @Model.ProductCode}, new { @class = "editLink" }) I'm not quite sure if this is correct or if the part new { ProductCode = @Model.ProductCode} makes any sense (please explain to me what that part does, anybody hihi). Anyway, my pop-up code