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()
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.