I have this table
<% using(Html.BeginForm("ViewTwo","Order"))
{ %>
<table id="Products" class="Products">
<tr>
<th>ProductId</th>
<th>Productname</th>
<th>Quantity</th>
<th>UnitPrice</th>
</tr>
<% for(int i=0; i < Model.NorthOrderDetails.Count; i++)
{
%>
<tr>
<td><%: Html.Label(Model.NorthOrderDetails[i].ProductID.ToString()) %></td>
<td><%: Html.Label(Model.NorthOrderDetails[i].ProductName) %> </td>
<td><%: Html.TextBoxFor(m => m.NorthOrderDetails[i].Quantity) %></td>
<td><%: Html.TextBoxFor(m => m.NorthOrderDetails[i].UnitPrice) %></td>
<td>
<%: @Html.ActionLink("Go", "ViewTwo", "Order", new { firstval = Model.NorthOrderDetails[i].ProductID.ToString()}, null)%>
</td></a></td>
<td> <input type="submit"> </td> </tr>
<% } %>
</table>
<% } %>
How I can get values from model to controller after I press ActionLink ?