ajax请求dotnet webservice格式
$.ajax({
                  type: "post",
                  url: "your_webservice.asmx/you_method",
                  contentType: "application/json; charset=utf-8",
                  dataType: "json",
                  data: '{parameter_key:"parameter_value"}',
                  success: function (data) {
                      alert(data.d);
                  },
                  error: function () {
                      alert("fail");
                  }
            });
注:数据格式均采用json
                    
                
                
            
        
浙公网安备 33010602011771号