I have an MVC3 C#.NET web app and need to call a view using Html.ActionLink. I can\'t tell from the documentation if I can specify the POST or GET. Below is my HTML, is th
You can also use Ajax.ActionLink where you can specify POST or GET
@Ajax.ActionLink("Create New", "Edit", "Subtask", new AjaxOptions{ HttpMethod="Post"})