up vote 4 down vote favorite
share [g+] share [fb]

I'd like to have a single action respond to both Gets as well as Posts. I tried the following

[HttpGet]
[HttpPost]
public ActionResult SignIn()

That didn't seem to work. Any suggestions ?

link|improve this question

63% accept rate
What doesn't work, and how does it fail? – Craig Stuntz Jul 12 '10 at 20:44
To explain the problem: The action is ignored. Each attribute will exclude all other request methods, so the action ends up not accepting any request methods at all. – Guffa Nov 3 '11 at 10:47
feedback

3 Answers

Actions respond to both GETs and POSTs by default, so you don't have to specify anything:

public ActionResult SignIn()
{
    //how'd we get here?
    string method = HttpContext.Request.HttpMethod;
    return View();
}

Depending on your need you could still perform different logic depending on the HttpMethod by operating on the HttpContext.Request.HttpMethod value.

link|improve this answer
this is fine until you try to use view models! in the post action you would typically pass in the viewmodel, i have try using an optional param and default it to null but that does not work. – JBeckton Jan 25 '11 at 19:46
feedback

This is possible using the AcceptVerbs attribute. Its a bit more verbose but more flexible.

[AcceptVerbs(HttpVerbs.Get|HttpVerbs.Post)]
public ActionResult SignIn()
{
}

More on msdn.

link|improve this answer
feedback
[HttpGet]
public ActionResult SignIn()
{
}

[HttpPost]
public ActionResult SignIn(FormCollection form)
{
}
link|improve this answer
That is not what I am looking for, thats the default MVC implementation of having separate methods for GET and POST via function overloading. I am not new to MVC, I am trying to have the GET action also respond to certain POST events in addition to the standard POST action for the form collection. – Cranialsurge Jul 12 '10 at 22:45
Then you need to follow Kurts' answer. No attribute will handle both. If you are attempting to have POST requests going to different actions, that is not possible. Your action will have to perform the switching you are looking for. – Jeremy B. Sep 18 '10 at 2:49
feedback

Your Answer

 
or
required, but never shown

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