I have an application based on google map, in which I need to use a javascript matrix (2d array) for the map's parameters.
I have a datatable with the information at my code behind file:
..query code, getting value from the db..
SqlDataAdapter adp = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
adp.Fill(dt);
How do I pass this datatable values into a js two denominational array?
Thanks