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