How to POST data to ASP.NET HttpHandler?

前端 未结 6 730
无人及你
无人及你 2021-02-02 15:58

I am trying to send a large chunk of data over to a HTTP handler. I can\'t send it using GET because of the URL length limit so I decided to POST it instead. The problem is that

6条回答
  •  北海茫月
    2021-02-02 16:46

    Faced similar problem. After correcting all issues, there was one more thing I missed in web.config - to change verb as * OR GET,POST. After that everything worked fine.

    
        ...
        
    
    

提交回复
热议问题