Is it possible to Invoke a HttpPost Action method from @Html.ActionLink
?
[HttpPost]
public ActionResult Delete()
{
// delete
}
@Html.ActionLink("Delete","Delete","Cart")
will render an anchor tag which is a get request.
I have a list of products i am showing in the shopping cart and i want to add a delete button.