GET and POST to same Controller Action in ASP.NET MVC

后端 未结 3 1222
北海茫月
北海茫月 2020-12-25 09:30

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


        
3条回答
  •  一个人的身影
    2020-12-25 10:01

    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.

提交回复
热议问题