I have "Form Designer" web application, in which I need to post the controls of the new form to an ASP.Net page to insert to DB, each time I create form control. I push it into two dimensional array, when user click save, this array will be serialized and sent to Server Page using Ajax.
Array string After Serialization Looks Like :
[
[
{"id":"cont_menu_tb1"},
{"name":"cont_menu_tb1"},
{"zindex":"500"},
{"top":"128"},
{"left":"214"}
]
,
[
{"id":"cont_menu_tb2"},
{"name":"cont_menu_tb2"},
{"zindex":"500"},
{"top":"275"},
{"left":"203"}
]
]
I used JSON.stringify(objCF_JSON) to serialize it. Now how to De-Serialize the Array Again using Newton in VB.Net into two dimensional arrays?