Hi,
I am making a ajax call, and the backend is gonig to return a JSON array.
Can someone give me an example of what my json array should look like so I can do the following in javascript?
if(myJSON.ErrorCode == 100)
{
alert(myJSON.Response.Message);
for(var x = 0; x < myJSON.Response.Values.Count; x++)
alert(myJSON.Response.Values[x];
}
else
{
if(myJSON.ErrorCode == 250)
{
alert(myJSON.ErrorMessage);
}
}