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
7
votes
2 answers

Kendo UI Async Upload not working in Internet Explorer

I'm trying to use the Kendo UI Upload (MVC wrapper) in async mode. Things seem to work fine in Chrome, but no such luck in IE (as of now only tested in IE 9). When it initiates the upload, I can see it hitting my action method and the request…
7
votes
3 answers

SCRIPT5: Access is denied in IE9 for iframe on the same domain

i am trying to submit form with file attached using iframe(through AJAX). I am using rails & remotipart gem. actually i've tried jquery.form.js library as well, but no luck. when i submit form i am getting "SCRIPT5: access denied" only in IE9 and…
Dzmitry
  • 749
  • 2
  • 11
  • 25
6
votes
1 answer

HTML5 asynchronous file upload, uploaded stream is always invalid

I'm trying to debug an asynchronous file uploader that I built some time ago which is no longer working, I've spent already a good deal of time without success. The stream that the server is receiving is always corrupted in fact the file (image)…
Giuseppe Romagnuolo
  • 3,362
  • 2
  • 30
  • 38
6
votes
6 answers

AsyncFileUpload restrict file size to upload

I am using AsyncFileUpload in order to allow users to asynchronously upload files. I want to limit the size of the file to 1MB. So far as to what I've seen I can only get the length of the file upon upload completion like when upload…
Mithir
  • 2,355
  • 2
  • 25
  • 37
6
votes
2 answers

Remote File upload in grails

I am creating a webapplication using grails which uses lot of ajax.I want to implement file upload using ajax.I dont know how to use ajax for file upload.My sample GSP code is :
I…
DonX
  • 16,093
  • 21
  • 75
  • 120
5
votes
0 answers

file upload using shared web worker with page navigation

I want to do background upload of files which does not impact the primary usage of the page once the upload of files has started being processed. In addition to this we want to be able to navigate away from the page performing the upload to other…
5
votes
6 answers

AsyncFileUpload postback causes double upload

I implemented the AsyncFileUpload control on a web page. This web page requires uploaded files to appear in a GridView. The GridView contains the following columns: "File Name", "Confidential" Check Box, and a "Remove" button to remove the uploaded…
user619814
  • 53
  • 1
  • 1
  • 4
5
votes
2 answers

How to add simple image upload to a form?

I have a html form. I want to add a simple image upload feature to it and it will be send the image to a php page called "next.php". Any suggestions on how to do it?
ninja208
  • 51
  • 1
  • 1
  • 2
5
votes
2 answers

Text Content and FileUpload with AJAX

I am writting a client database system for my company. Not much fancy stuff, but it does what it should. Now that all the basic "text" stuff is done I want to add some filemanagement into it. I have several forms which get send to the backend with…
noa-dev
  • 3,561
  • 9
  • 34
  • 72
5
votes
7 answers

SWFUpload works in IE, but not in Firefox

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). In IE 8 the uploads hit the upload.aspx page and are processed, but…
Xolamee
  • 81
  • 1
  • 2
  • 6
5
votes
7 answers

how to clear the textbox value of asyncfileupload ..?

There is one button(MyButton). OnClick of this button a modalpopup(MyPopup) appears with one asyncfileupload ajax control, Ok button and Cancel button. The browse functionality of the asyncfileupload functionality is working fine, No problem. But…
Amit
  • 165
  • 1
  • 5
  • 18
5
votes
2 answers

jQuery FormData POST - for file upload

I am trying to submit a full form for server side processing using jQuery. The form contains various fields including a file upload option. I am trying to use FormData to do this as I don't care about browsers that don't support it at the moment. I…
Jon Rubins
  • 4,323
  • 9
  • 32
  • 51
4
votes
2 answers

Fire AsyncFileUpload control through a Button

I want to fire the AsnyncFileUpload control through another control in the page. I have used AsyncfileUpload from ASP.NET AJAX toolkit and hidden it through JQuery. And places a button next to it. When even i click this button and select a file i…
Guru Kara
  • 6,272
  • 3
  • 39
  • 50
4
votes
1 answer

WebKitFormBoundary uploading a file to S3 using axios FormData

I am trying to upload files to S3, files are successfully uploaded and but when downloaded it contains WebKitFormBoundary ------WebKitFormBoundaryrTBzWaHQntWAtZLX Content-Disposition: form-data; name="file" hello…
Rafee
  • 3,975
  • 8
  • 58
  • 88
4
votes
3 answers

Is it possible to upload a file with AJAX and no iframe or Flash?

Every time I have looked into AJAXy file uploading, an iframe has always been used underneath, somewhere. Is it possible to upload a file using AJAX and no iframe or Flash? How about in the more recent versions of Firefox and Chrome? I'm debating…
Chad Johnson
  • 21,215
  • 34
  • 109
  • 207
1
2
3
19 20