My json data being retrieved is as of below, notice that the format is not right in terms of object and key values why is this so, I am retrieving this json data from a dataset using the jayrock rpc service for asp.net 3.5
{
"Table":{
"columns":[
"i_member_id",
"i_group_id",
"u_name",
"u_tel",
"u_email",
"u_password",
"d_timestamp",
"b_activated"
],
"rows":[
[
1,
0,
"kevin",
"1231234",
"kevin@creaworld.com.sg",
"123",
"2011-01-05T09:51:36.8730000+08:00",
true
],
[
2,
0,
"kevin2",
"asdads",
"kevin2@creaworld.com.sg",
"123123",
"2011-01-05T10:01:46.1530000+08:00",
true
]
]
}
}
Here the link is to find the json formater
http://jsonformatter.curiousconcept.com/
Better you can use third party DLL
Json.Net
It will use full for you.