Hi
Since i am new to json i need to know what is json and also the post method of json
and also there is a requirement in which i have certain data in dataset ans i have converted it to json using
string strjson = string.Empty;
strjson = Newtonsoft.Json.JsonConvert.SerializeObject(dsGetdetails);
and the output(json) look like the below one
{"Table":[{"businessName":"Name","businessId":1234},{"businessName":"Name","businessId":1234}]}
now how to the above json in the jvascript and use the post method