Jquery - using a POST request, which is not allowed Error

前端 未结 2 1499
自闭症患者
自闭症患者 2021-01-12 14:14

I am trying to get jquery to communicate with a web service!!

  function Test(item) {
    $.ajax({
        type: \'POST\',
        url: \'WebService.asmx/Tes         


        
2条回答
  •  一生所求
    2021-01-12 14:44

    Your web service method is marked with a ScriptMethodAttribute that specifies UseHttpGet = true. Try removing this argument, or setting it to false. This is what is preventing the POST from working.

提交回复
热议问题