How to retrieve values from an object in c#....
JavaScriptSerializer jss = new JavaScriptSerializer();
object obj = jss.DeserializeObject(Page.Request.Form[0].Replace("\"", "'"))
From the above code.........
The object obj contains an array of values like, obj[0]={i[d,id1])
obj[1]-{[firstaname, Susan]}
.............................
i want to simply display this values using response.write
pls help me... urgent requirement
Regards,
Susan