日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

JS,Jquery 调用 C#WebService

發布時間:2023/12/13 C# 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JS,Jquery 调用 C#WebService 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1,需要在服務下面把代碼的注釋去掉

  // 若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消對下行的注釋。
  //[System.Web.Script.Services.ScriptService]

2,JS 調用方法如下

var request = '<?xml version="1.0" encoding="utf-8"?>';request += '<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">'request += '<soap12:Body>'request += '<UpdateFacultativere xmlns="http://tempuri.org/">'request += ' <facNum>12313</facNum>'request += ' <facVerstion>2</facVerstion>'request += ' <date>string</date>'request += ' <description>string</description>'request += ' </UpdateFacultativere>'request += '</soap12:Body>'request += '</soap12:Envelope>'var req = new XMLHttpRequest();req.open("POST", 'http://localhost:34869/CRMService.asmx', true)// Responses will return XML. It isn't possible to return JSON.//req.setRequestHeader("Accept", "application/xml, text/xml, */*");req.setRequestHeader("Content-Type", "application/soap+xml; charset=utf-8");req.setRequestHeader("Content-Length:", request.length);req.setRequestHeader("SOAPAction", "http://tempuri.org/UpdateFacultativere");req.onreadystatechange = function () { DoR(req, successCallback, errorCallback); };req.send(request);

  

3,Jquery調用方法如下

$.ajax({url: 'http://localhost:34869/CRMService.asmx/UpdateFacultativere',data: {facNum :'02020',facVerstion:10, date:'10292', description:'2222'},dataType: "xml",type: "POST",success: function (xml) {debuggeralert(xml);},error: function (xml, status) { debugger}});

?

轉載于:https://www.cnblogs.com/hellohongfu/archive/2012/10/10/2718060.html

總結

以上是生活随笔為你收集整理的JS,Jquery 调用 C#WebService的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。