I created a JSON object in the client side And then Pass it into a asp:HiddenField
Here is a part Of that Object
"[{"value":"0","column":"lngTask"},{"value":"End Checklist","column":"strTask"},
{"value":"0","column":"lngChecklistRevision"},
{"value":"","column":"lngManagedTask"}......]"
Then I wanted to Use it in my code behind I'm Using Visual Basic
So i used JavaScriptSerializer()
Like this :
Dim jss As New JavaScriptSerializer()
Dim lstReport As List(Of Object) = jss.Deserialize(Of List(Of Object))
(hfObjSqlGridRow.Value)
Here is how my lstReport
Looks like :
My Question Is how can i loop through this object
i have tried things like :
lsReport(0)(0)
lsReport(0).(0).value
lsReport(0).value
Nothing works i get this Error = The given key was not present in the dictionary.