Questions tagged [asyncfileupload]

Async file upload is the process of asynchronously uploading files from a web page.

In the context of ASP.NET, the 'asyncfileupload' tag most likely refers to the ASP.NET AJAX AsyncFileUpload component.

293 questions
30
votes
5 answers

HTML5 multiple file upload: upload one by one through AJAX

I have a multiple files upload form: I am posting these files with ajax. I would like to upload the selected files one by one (to create individual progress bars, and out of curiousity). I can get the…
Mark
  • 18,730
  • 7
  • 107
  • 130
23
votes
3 answers

error writing mime multipart body part to output stream

I have code that does async file uploads which works fine on my dev vm but after I deployed it to the client system, I keep getting this error: "error writing mime multipart body part to output stream" I know this is the line that is throwing the…
14
votes
3 answers

blueimp jquery file upload - "done", "complete" callbacks not working for IE 9

I am using Blueimp Jquery File Upload plugin to upload files asynchronously. It works well in most other browsers (with a few minor issues) - on IE, I see this issue that the "done", "stop", "always", "complete" and some other event callbacks are…
tanushree
  • 763
  • 1
  • 7
  • 20
12
votes
4 answers

How to clear file upload text in server side (c#)

I want to clear the file path from the file upload. The file upload is inside the update panel and I am using a AsyncFileUpload. How can I clear the file and change the background color of the fileupload btnAudUpload_Click Method string filename…
Murthy
  • 1,502
  • 11
  • 31
  • 45
12
votes
1 answer

Is the TransferManager in AWS SDK for S3 doing Asynchronous I/O?

I've been reading about TransferManager in the Amazon's AWS SDK for doing S3 uploads, the provided API allows for non-blocking usage, however it's unclear to me if the underlying implementation actually does asynchronous I/O. I did some reading on…
12
votes
4 answers

Asp.Net Ajax Toolkit AsyncFileUpload - "The file is attached is invalid" error

I'm trying to use the AsyncFileUpload control from the Asp.net Ajax Control Toolkit (Sept 30, 2009 stable build: 30930) . I've created a demo application and the control works fine. Files upload and all is well. When I try to use the control in my…
Craig M
  • 5,598
  • 4
  • 32
  • 43
11
votes
4 answers

disable request buffering in nginx

It seems that nginx buffers requests before passing it to the updstream server,while it is OK for most cases for me it is very bad :) My case is like this: I have nginx as a frontend server to proxy 3 different servers: apache with a typical php…
Uriel Katz
  • 187
  • 1
  • 2
  • 10
10
votes
3 answers

reassemble binary after flow.js upload on node/express server

I can't figure out how to use the flow.js library with a node backend, and basing my code off the sample on the flow.js github. I'm getting the blob files up, but I'm not building the binary afterward the upload completes. The final get isn't…
user3499275
  • 207
  • 3
  • 9
9
votes
2 answers

Bootstrap Fileinput does not send file again on second upload

When I upload a file with Krajees Bootstrap Fileinput, I perform a server side validation of the file. When something goes wrong, I output a JSON-Object simply with {error:'Something went wrong'}. The Plugin displays the error perfectly. But then:…
9
votes
1 answer

Need help debugging XHR-based Ajax Image Upload with ASP.NET MVC2

I'm attempting to use the script found from http://valums.com/ajax-upload/ My controller is as follows using System; using System.IO; using System.Text.RegularExpressions; using System.Web; using System.Web.Hosting; using System.Web.Mvc; using…
Grahame A
  • 3,903
  • 12
  • 46
  • 70
8
votes
3 answers

Does not redirect page after UploadComplete in AsyncFileUpload c#

I am using Ajax AsyncFileUpload in asp.net. It is working fine in uploading image but don't know why it is redirecting to same page with some querystring OnUploadComplete. I don't want to reload page. How to solve this ? My Code is as…
Jeeten Parmar
  • 5,568
  • 15
  • 62
  • 111
8
votes
2 answers

How to show the image after upload in asp.net fileupload

I have a fileupload control which is inside update panel. I want to display the image after upload is complete. below is my html code

sandeep.mishra
  • 825
  • 4
  • 19
  • 40
8
votes
4 answers

AJAX file upload/form submit without jquery or iframes?

Is it possible to do an AJAX form submit without jQuery or IFrames (so just pure JavaScript)? I'm currently sending to a struts fileUploadAction that works. Would the action's code still work with the asynchronous submit, or are there additions…
edwardmlyte
  • 15,937
  • 23
  • 58
  • 83
7
votes
5 answers

How to solve file upload error in Postman?

I use file upload with webapi in my project. I am testing with Postman. However, Request.Content.IsMimeMultipartContent() always returns false. Postman screenshot: FileUploadController Code: public async Task
7
votes
0 answers

Android DownloadManager counterpart for uploads

Is there a counterpart to androids DownloadManager? I want to start uploading files and when the app gets killed, the upload should continue. It should offer similar possibilities like setting headers, progress notification, notification hub…
1
2 3
19 20