I work with ASP.NET-MVC. I try to post an array in ajax but I don\'t know how to get it in my controller. Here is my code :
Ajax
var lines = new Arra
First, try to change:
data: { 'lines': lines }
to
data: { lines: lines },
If it won't help, try to use json.stringify(lines)