I\'m trying to upload a file using Ajax.BeginForm(), but it\'s not working out.
My view contains:
@using (Ajax.BeginForm(\"UploadFile\", null, new Aj
You cannot upload files using AJAX. This is not supported. If you want to do that you could either use some file upload plugin such as Uploadify or Blueimp File Upload or use the HTML 5 File API if the client browser supports it.