How to split/parse json response from zoho crm api using asp

How to split/parse json response from zoho crm api using asp

Hi,

I am getting below json response from zoho CRM API. But i need your help to split individual variables like content, val from this response.

  1. // JavaScript Document
  2. {
  3. "response":
  4. {
  5. "result":
  6. {
  7. "SalesOrders":
  8. {
  9. "row":
  10. {
  11. "no":"1",
  12. "FL":
  13. [
  14. {
  15. "content":"38660000015546081",
  16. "val":"SALESORDERID"
  17. },
  18. {
  19. "content":"38660000015546083",
  20. "val":"SO Number"
  21. },
  22. {
  23. "content":"Product Name",
  24. "val":"Subject"
  25. },
  26. {
  27. "content":"2016-01-11",
  28. "val":"Due Date"
  29. },
  30. {
  31. "content":"Delivered",
  32. "val":"Status"
  33. }
  34. ]
  35. }
  36. }
  37. },
  38. "uri":"/crm/private/json/SalesOrders/searchRecords"
  39. }
  40. }