如何从web方法中捕获json中的返回值?

时间:2013-03-26 09:59:51

标签: c# asp.net json jquery

Net和Webmethods使用JSON

我的webmethod返回值为

    return ResultValue;
      // which gives 1 as Return Value on SUcessfull insertion

如果返回值为1,我希望它在我的JQuery中显示为成功

为什么我应该抓住我的webmethod中的返回值?

2 个答案:

答案 0 :(得分:0)

在你的ajax代码上试试这个:

$.ajax({
    type: "POST",
    success: function(data) {  

      //data=ResultValue

      if(data == 1)
       { // Success Stuff }else {//do stuff}

    },
    error: function(XMLHttpRequest, textStatus, errorThrown) {
        alert("error: " + XMLHttpRequest.responseText);
    },
    dataType: 'json'
});

最好的问候

答案 1 :(得分:0)

$.ajax({
  url: 'mypage.html',
  success: function(data){
    if(data ==1)
       alert('success');
    else
       alert('failure');
  },
  error: function(){
    alert('failure');
  }
});

http://api.jquery.com/jQuery.ajax/

或者在webmethod中设置Response对象的状态代码。像这样:

Response.Clear();
Response.StatusCode = 500; // or whatever code is appropriate
Response.End;