I\'m trying to execute a web service which returns a DataTable with the following piece of code:
$.ajax({ type: \"POST\", url: url, data: d
.Net 3.5 has a JSONSerializer that should be able to handle a datatable. You may want to look at your service code again and try getting it to use that. Also, I put some code together to do it manually in this question.