vb.net - JavaScript Serialize Array to JSON -


I have a "form designer" web application, in which I need to post the control of the new form of ASP.Net page. To put in DB, every time I create a form control, I push it into a two-dimensional array, when the user saves the click, this array will be serialized and sent to the server page using AJAX. The array follows the string after the array:

  {"Id": "cont_menu_tb1"}, {"name": "cont_menu_tb1"}, {"zindex "" "", "" "," "", "" "," "", "" "", "" "," "" "," "", "" "", "" "128"}, {"left": "214"}, I used  JSON.stringify (objCF_JSON)  to use it. Now how to de-serialize the array into two-dimensional arrays in Newton in VB.Net?  

This is not a two dimensional array, it is a dimension array with 2 objects.

  list & lt; SomeObject & gt; Objects = JsonConvert.DeserializeObject & lt; List & lt; SomeObject & gt; & Gt; (JSN);   

Where the object name, width, height in some objects is

Comments