Hi,
Working with the Dataview which get the values from JSON and need to bind the data in the Datagrid.
The tables in the Datagrid as created in Models. Now need to map this JSON data to the Datagrid.
HttpResponseMessage Response = await client.PostAsync("http://www.google.com", content);
int statusCode = (int)Response.StatusCode;
string results = await Response.Content.ReadAsStringAsync();
MessageBox.Show(results);
I have DE serialize the object and passing as the JSON object in controller.
var tabs= JsonConvert.DeserializeObject<List<JsonResult>>(input);
The JSON Object returning Null object when its reaching the View part. It has values in Controller while returning.
Mani.R