Web api not supporting POST method

后端 未结 6 1419
不知归路
不知归路 2020-12-10 10:47

In my web api controller i have a function with following codes

       [HttpPost]
        public HttpResponseMessage Post(string schooltypeName)
        {
           


        
6条回答
  •  不知归路
    2020-12-10 11:04

    See the using namespace at the top of the controller, if you're using System.Web.Mvc, then this problem might be occurred:

    Use this:

    using System.Web.Http;
    

提交回复
热议问题