Tagged Questions

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

learn more… | top users | synonyms

6
votes
1answer
1k views

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 ...
6
votes
3answers
13k views

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 ...
3
votes
3answers
253 views

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 ...
3
votes
1answer
1k views

help me understand the following javascript relate to AsyncFileUpload control

in my current project I used a AsyncFileUpload control from AJAX Control Toolkits. After I got the async file upload part working, I needed to filter the file type so users can only upload image ...
3
votes
5answers
3k views

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 ...
2
votes
3answers
150 views

ASP.NET MVC 3 file upload plugins

I'm looking for a multifile upload module / plugin, preferably async upload for my ASP.NET MVC 3 project. I've come across blueimp but after fiddling around with the demo, some images uploaded were ...
2
votes
1answer
87 views

AsyncFileUplaod losing target frame

My page has an IFRAME tag with a src pointing to another page which has 4 ImageButtons and a ModalPopupExtender that opens up a DIV that contains an AsyncFileUpload (AFU) for loading pictures. ...
2
votes
0answers
494 views

Multiple AJAX asyncfileupload created from c# code behind

I have an asyncfileupload control created from code behind C# and I can't figure out how to reference the control from the UploadedComplete section of my code. Double asterisks are what I'm talking ...
2
votes
1answer
403 views

Asyncfileupload not working in Firefox

I'm making an asp.net website, in it I have an Asyncfileupload control which is inside an updatepanel. It works fine in Chrome & other browsers but it doesn't work in FireFox.. Please help..
2
votes
2answers
870 views

AsyncFileUpload hasFile is always false

I know with FileUploader you need to do a full post back. But I thought with AsyncFileUpload didn't work this way. My hasFile is always returning false. (I upload an image, and then I hit the form ...
2
votes
0answers
864 views

Invalid argument error with an AsyncFileUpload inside a modalpopupextender

I receive this error when the page loads: Invalid argument. On this line: a._innerTB.style.width=a._inputFile.offsetWidth-107+"px" If I remove this attribute UploaderStyle="Modern", I don’t have ...
1
vote
1answer
50 views

How to transfer large files/directories over network using AsyncSocket

The title says it all - i've tried the NSTask > NSData method, but the CPU/memory overhead is extremely large for anything over 1GB, so I need to find a way to do this like, say, an FTP server does ...
1
vote
0answers
250 views

Ajax AsyncFileUpload Upload Control upload file multiple time

I have been trying to sort this issue for the whole day so far i have no luck, I have a Web Form which have some asp.net form controls and Two AsyncFileUpload controls. When i upload the image using ...
1
vote
1answer
550 views

ASP.Net AjaxControlToolkit AsyncFileUpload in update panel that is created in server-side code with master page c#

I have been trawing around all morning trying to get the AsyncFileUpload control from the asp.net AjaxControlToolkit to work in my situation, with no luck. I have an Ajax enabled page which displays ...
1
vote
0answers
265 views

Async File Upload not updating Update Panel in Firefox

I’m using the Async File Upload control from the Ajax Control Toolkit (I’ve tried versions 3.0 and 3.5 for asp.net 3.5). When the file upload is complete I update some text fields in a simple ...
1
vote
1answer
263 views

onUploadComplete event of asyncFileUpload

how to display a btn after onUploadComplete event is executed? It's not coming now even I say btn.visible=true inside that event.. I read in one of the thread that this event happens asynchronously ...
1
vote
3answers
723 views

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 ...
1
vote
6answers
370 views

Session error :Object not set to an instance

In my webpage I'm not able to get the session variable on post back in remote server. The problem is if the page is not IsPostback then I'm able to get the session variable. But if the page ...
1
vote
1answer
140 views

GDI+ A generic error … Attempting to save file

I've been learning quite a bit from everyone here, however I've come across a problem which I'm having trouble finding an answer to. While attempting to save an image which has been uploaded using ...
1
vote
2answers
936 views

Updating an Image url in an UpdatePanel in asp.net

I have a GridView in which I have an UpdatePanel. I am trying to update the I*mage URL* of my asp:image by using AJAX ASyncFileUpload. I've been searching on Google for a solution for the past 2 days ...
1
vote
1answer
173 views

Best way to store a file on server, that is being uploaded by chunks?

Basically I'm looking for a best way to store partial uploads on server. Files are going to be uploaded chunk by chunk. Chunks may come in parallel and in arbitrary order. I will need to temporarily ...
1
vote
0answers
254 views

YUI3 io-upload-iframe

Can you use yui3's io-upload-iframe to send form data along with the file upload? I am setting the form's id, like I normally would to serialize the form data, but since I am setting upload : true, ...
1
vote
2answers
788 views

Ajax file upload using jquery in asp.net mvc

I have to enter different data in a view which includes a partial view for file upload. I want to achieve uploading file to database without loosing other data in my view. ie. i need to upload a file ...
1
vote
1answer
903 views

change button text on AsyncFileUpload control

is it possible to change the button text on the Ajax control toolkit's AsyncFileUpload control from "Select File" (modern style) to something else? it should be a simple thing like Text property on ...
1
vote
1answer
449 views

Getting the new filename of a file saved with ajax AsyncFileUpload?

I'm saving a file with the asyncfileupload ajax plugin from the ajax toolkit and when I save it I'm changing the filename (to avoid multiple files with the same name). After the file is uploaded, ...
1
vote
1answer
453 views

Empty file in file upload control

I am using AsyncFileUpload of ajax toolkit of asp.net. But while uploading a file of size 0kb, it gives me error "Unhandled exception: the file attached is empty". Is there any solution for uploading ...
1
vote
3answers
417 views

How can I upload files asynchronously on ASP.NET?

I've been looking for a way to achieve this behavior and I found this sample project. The trick in this project is that it changes the form target to an iframe created on the fly. So far so good, I ...
1
vote
1answer
1k views

ASP.NET AsyncFileUpload RegisterClientScriptBlock not working

I have a problem working with ScriptManager's RegisterClientScriptBlock which is not working. I have a AsyncFileUpload and I want to preview the uploaded image dynamically after the upload. the ...
1
vote
2answers
633 views

Ajax Toolkit AsyncFileUpload not working inside a normal Panel

Referring to the following: Ajax Asyncfileupload doesn't work as soon as I put it in a control I am having the same issue. I am not using a Master page though. I have an AsyncFileUpload control in a ...
1
vote
1answer
1k views

How to add required validator to ajax AsyncFileUpload?

How to add client side required validator to asyncfileupload ,to enforce user to select file before submitting the page.
1
vote
0answers
330 views

SWFUpload, why doesnt Firefox POST?

I implemented SWFUpload on my site and it works great in IE, but in Firefox no data is POSTed to the server. I have verified this using Charles. I noticed from the debug info that in IE the last two ...
1
vote
1answer
3k views

Why AsyncFileUpload enforces a Postback?

I'm AjaxControlToolkit's AsyncFileUpload control to upload files to server. It is placed in an UpdatePanel but when someone uploads a new file, a post back occurs. Why a post back occurs while I've ...
1
vote
3answers
4k views

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 ...
1
vote
2answers
1k views

How to upload an image when fileupload control is under updatepanel?

How to upload an image when fileupload is under updatepanel? I have a button say "upload" inside that update panel. When I click that button inside the button click event I got the fileupload ...
0
votes
1answer
46 views

How to assign a file to file upload in server side c# (asp.net website)

I have a asyncfile upload in my asp.net website. I have to show a file name inside the file upload. I have a edit functionailty which has to display the name of uploaded file insided the file upload. ...
0
votes
0answers
57 views

ASP.Net AjaxToolkit AsyncFileUpload inside the ModalPopUp control is not working in Firefox

ASP.Net AjaxControlToolkit AsyncFileUpload control is not working when I put it inside the ModalPopUp control. The problem is only in Firefox (other browsers work fine). I am using AjaxToolkit Version ...
0
votes
1answer
74 views

asyncfileupload - Unhandled Exception. Access is denied

I'm getting this error when uploading a file. I realise it's to do with size but any client side validation and server side validation to prevent large files from being uploaded isn't being executed, ...
0
votes
0answers
21 views

2 AsyncFileUploads on 1 Page

I have a page with 2 tabs. In tab1, one may upload a profile picture. I am using AsyncFileUpload. I've tested it thoroughly and it works fine. in tab2, I am using a control - Product CMS, that I ...
0
votes
1answer
238 views

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 ...
0
votes
1answer
95 views

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. ...
0
votes
0answers
59 views

Best Open Source, Web based, Discussion/Collaboration System, written in PHP

I'm looking for a web based discussion/collaboration system. It will replace email communication for a small (20) team of people. Something similar to Facebook Messages would be close to perfect. It ...
0
votes
0answers
91 views

ASP.NET AsyncFileUpload - Internet-Explorer Access is denied

I have an asp.net AsynFileUpload control on the page and an html image tag that fires the AsyncFileUpload click event. Works fine in Firefox, Chrome and Safari but not IE. Example <script ...
0
votes
0answers
51 views

AsyncFileUpload - Custom return value

I am using AsyncFileUpload control of Ajax Control Toolkit so users can upload videos to server. Uploaded file is saved to database in UploadComplete server side event of AsyncFileUpload. Now i need ...
0
votes
1answer
130 views

asyncfileupload in jquery modal popup

I have placed an AsyncFileUpload control on a jquery modal popup and I can't the "AsyncFileUpload1_UploadedComplete" to fire when ok to upload. It does work when placed directly on the page. (This is ...
0
votes
0answers
104 views

AjaxToolkit using Async upload with FaceBox

Having an issue using FaceBox (http://defunkt.io/facebox/) with AjaxControlToolkit async upload, as a standalone page the upload function works correctly as expected , however when i load the page ...
0
votes
0answers
53 views

Exception in js When page load

I have AjaxToolKit Control i.e. AsycFileUpload in my page. The tr that contains this control is set to Display: none. Like : <tr style="display:none"> <td> ...
0
votes
1answer
219 views

How can I cancel a file upload using the jQuery forms plugin

I'm using the jQuery Forms plugin to do an asynchronous file upload. Currently, the only way for the user to abort that upload is to press the "Stop" button on their browser, which may cause other ...
0
votes
2answers
432 views

AJAX image upload possible jquery with preview

I am trying to find some sort of plug-in for Ajax upload with a file preview. The image will be saved into a MySQL dataBase. Is that even possible? I guess all things are possible with certain ...
0
votes
1answer
55 views

AsyncFileUpload Asynchronies Process?

Working with the asp.net AsyncFileUpload control. Is it an asynchronies process? I noticed when selecting a file, a postback is performed. Viewing in Fiddler, all script and external CSS pages again ...
0
votes
2answers
370 views

File Upload doesn't work in a page with Ajax Update Panel

I am using Ajax File Upload control in ASP.NET 4 using c#. The same page has an update panel too but the upload control is not inside the update panel. The upload control is outside of the update ...

1 2