I am trying to follow this tutorial on how to bind an array to a grid-view: Binding Arrays to GridView in ASP.Net
It is easy enough to follow, but my array structure looks different that the one in the example. I would like to find out how to write an array that looks like this:
{
"users": [
{
"name": "aldo",
"email": "[email protected]"
},
{
"name": "matias",
"email": "[email protected]"
}
]
}
Any help would be great.
Thank you, Erasmo