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 ?
|
I'd like to have a single action respond to both Gets as well as Posts. I tried the following
That didn't seem to work. Any suggestions ?
| |||||
feedback
|
|
Actions respond to both GETs and POSTs by default, so you don't have to specify anything:
Depending on your need you could still perform different logic depending on the HttpMethod by operating on the HttpContext.Request.HttpMethod value. | |||
feedback
|
|
This is possible using the AcceptVerbs attribute. Its a bit more verbose but more flexible.
More on msdn. | |||
|
feedback
|
| |||||
feedback
|