Net和Webmethods使用JSON
我的webmethod返回值为
return ResultValue;
// which gives 1 as Return Value on SUcessfull insertion
如果返回值为1,我希望它在我的JQuery中显示为成功
为什么我应该抓住我的webmethod中的返回值?
答案 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;