Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Progress Bar while sending ByteArray to Server through Action Method in MVC 3
  2. $.ajax({
  3.         url: '@Url.Action("Upload")',
  4.         type: 'POST',
  5.         contentType: 'application/x-amf',
  6.         processData: false,
  7.         data: ByteArrayData,
  8.         success: function (result) {
  9.             alert(result);
  10.         }
  11.  
  12.     });