I'm trying to send file with params (using blueimp/jQuery-File-Upload) to my ASP.NET server, but it gives me only the last value of arr
.
arr = [ 1, 2, 3 ]
$('#fileupload').fileupload({
url: '/Upload?arr=' + arr+ ''
});
How can I send more than the last value?