I use mvc 5 in my project.
I create action link using razor that sent some data to action method by GET mthod.
Here is action link:
<tbody>
    @foreach (var item in Model)
         {
               <tr><td>@Html.ActionLink(item.Name, "About", "Home", item, new { @class = "btn btn-featured btn-white height-30 width-100" })</td></tr>
         }
 </tbody>
My question is how to change created action link above to make it sent data by POST to action method?