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

后端 未结 3 1223
北海茫月
北海茫月 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 09:52

    [HttpGet]
    public ActionResult SignIn()
    {
    }
    
    [HttpPost]
    public ActionResult SignIn(FormCollection form)
    {
    }
    

提交回复
热议问题