Answers for "how to access data in json format using asp.net c#"

0

how to access data in json format using asp.net c#

string json;
using(var reader = new StreamReader(Request.InputStream)){
        json = reader.ReadToEnd();
    }
var person = Json.Decode(json);
Posted by: Guest on September-23-2020

Code answers related to "how to access data in json format using asp.net c#"

Code answers related to "Javascript"

Browse Popular Code Answers by Language