Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my requirement is simple , i just wanna know how i should frame my json for the following xml format .

<emp>
<emp details>
<emp no>a1</emp no>
<name> asd</name>
<age>23</age>
</emp details>
<emp details>
<emp no>a2</emp no>
<name> weasd</name>
<age>23</age>
</emp details>
<emp details>
<emp no>a3</emp no>
<name> sdf</name>
<age>33</age>
</emp details>

and also i have one more question

 Response.ContentType = "application/json";
        string json = @"{
  ""Name"": ""Apple""{
  ""Expiry"": new Date(1230422400000),
  ""Price"": 3.99,
  ""Sizes"": [
    ""Small"",
    ""Medium"",
    ""Large""
  ]
}";
        Response.Write(json);

$.ajax({
              type: "POST",
              url: "CarService.asmx/GetAllCars",
              data: "{}",
              contentType: "http://localhost:1967/WebSite14/Default.aspx",
              dataType: "json",
              success: function (response) {
                  var cars = response.d;
                  $('#output').empty();
                  $.each(*, function (index, name){some code }

with what collection should i replace * in the above $.each() function

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.