Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #access #data #json #format
ADD COMMENT
Topic
Name
9+2 =