[RESOLVED] Convert JQuery Datatable into List of object.
I need to convert a JQuery datatable donwloaded by httpclient as a string like this:
Code:
{"draw":15,"recordsTotal":3,"recordsFiltered":3,"data":[["value1","value2","value3","value4","value5","value6","value7","value8"],["value1","value2","value3","value4","value5","value6","value7","value8"],["value21","value22","value23","value24","value25","value26","value27","value28"]["value31","value32","value33","value34","value35","value36","value37","value38"]]}
into a list of (T ) so I can easy manipulate them.
Is there any way whitout manual parsing commas and other delimiters?
And also, I'm executing the query by the url filled with the search field, if I can find the JS functions inspecting the webpage, could I call them by vb.net code?