如何从c#中的webmethod获取XML响应的值

时间:2013-10-09 14:23:12

标签: asp.net c#-4.0

  

“<”?xml version = \“1.0 \”encoding = \“utf-8 \”?>   “<”string xmlns = \“http://xyz.org/ \”>   你好,世界   “<”/串GT;

我想得到Hellow World。那该怎么办?

1 个答案:

答案 0 :(得分:0)

如果您使用的是jquery:

$(document).ready(function() {
  $("#Result").click(function() {
     $.ajax({
      type: "POST",
      url: "Default.aspx/MyWebMethod",
      data: "{}",
      contentType: "application/json; charset=utf-8",
      dataType: "json",
      success: function(msg) {
         alert(msg.d);
      }
});