ASP.NET MVC - Is IsPostBack still here?

前端 未结 11 2079
我在风中等你
我在风中等你 2020-12-09 17:09

I know, I know, I know. I shouldn\'t be doing webforms inside of MVC, I completely agree. But, the people who sign my paycheck will not approve a complete conversion of ou

11条回答
  •  死守一世寂寞
    2020-12-09 17:24

    In case anyone is still interested, you can test for a POST from inside an MVC Action Method like this:

    if (Request.HttpMethod=="POST") { 
    
    }
    

提交回复
热议问题