vote up 0 vote down star

I have a webmethod that returns a Hashtable through a jQuery ajax call along the lines of:

$.ajax({
   type: "POST",
   url: webMethod,
   data: {}
   contentType: "application/json; charset=utf-8",
   dataType: "json",
   success: function(json){
      **alert(json.d);**
   },
   error: function(XMLHttpRequest, textStatus, errorThrown) {
      alert(textStatus);
   }
});

My problem is, when I deploy it to the server json.d is undefined, but instead json is the hashtable. On my local box its the opposite json.d is the hastable and not the json object.

I've traced it back to a point where I can see that the returned JSON string is sometimes {d:{}} and on the server its {}.

Does anybody know why?

flag

71% accept rate
Please show the server-side code. Also, please say what version of .NET you're using. – John Saunders Aug 5 at 14:05

1 Answer

vote up 0 vote down

I try and use this firefox plugin to see what the json data looks like

https://addons.mozilla.org/en-US/firefox/addon/10869/

it formats all the json coming back nicely so you can see what your object looks like.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.