- Progress Bar while sending ByteArray to Server through Action Method in MVC 3
- $.ajax({
- url: '@Url.Action("Upload")',
- type: 'POST',
- contentType: 'application/x-amf',
- processData: false,
- data: ByteArrayData,
- success: function (result) {
- alert(result);
- }
- });