ASP.NET MVC - Passing Javascript multidimensional array to C# non-jagged array
ASP.NET MVC - Passing Javascript multidimensional array to C# non-jagged array
I am passing the multidimensional array to the controller with the following code -
$.ajax(
url: "/Home/UpdateTableDB/",
type: "POST",
traditional: true,
contentType: 'application/json',
data: JSON.stringify( data: MultiDimensionArr ),
dataType: 'json'
).done(function ()
alert("success");
);
This works however only if the controller receives it as a jagged array
[HttpPost]
public ActionResult UpdateTableDB(string data)
return null;
If I change string data to string[,] data it does not work.
I don't think json supports 'multi key arrays', you might be trapped using an 'array of arrays'
– Davesoft
Aug 31 at 10:31
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Relevant example(s) of the data in question would be very helpful, since this is all about the structure of the data.
– ADyson
Aug 31 at 10:31