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 there a way to specify GET or POST?

 @Html.ActionLink("Create New", "Edit", "Subtask", 
                        new {Id = ViewBag.Id, Command="CreateHourEntry"}, null)
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

If you want a post use Ajax.ActionLink but be aware it's an Ajax post. You could easily use jquery to cause your existing link to cause a form post but this functionality is not included in Html.ActionLink.

See ASP.NET MVC ActionLink and post method

link|improve this answer
feedback

HTML hyperlinks send GETs.

To POST, you need to use a form.
or some Javascript

link|improve this answer
@SLaks....thanks....might you have an example of a form using a POST? – MikeTWebb Dec 7 '11 at 20:19
Use @using (Html.BeginForm(...)) – SLaks Dec 7 '11 at 21:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.