How do you deserialize
a json String?
string str1 = "{ "id":"id1","data1":"1", "data2":"2","data3";"3"}
System.Collections.Generic.Dictionary<string, object> items = new System.Web.Script.Serialization.JavaScriptSerializer().DeserializeObject<System.Collections.Generic.Dictionary<string, object>>(str1);
Go to the complete details ...