@Html.ActionLink calling Post method

asp.net-mvc, get, post, razor

Solution

If you want to invoke POST action, put this link inside form which uses POST action, or use ajax version. You can find some more details here.

Problem

I have a `@HTML.ActionLink` in my Razor view and I'd like for it to call a `Post` action method rather than a `Get` one. Is this possible?

Original source

Related problems