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

Showing ProgressDialog while uploading file to server

I am trying to show a progress dialog while uploading a file to the server. The problem is that the dialog shows 0% while the file is uploaded then it is dismissed. public class Complete_Bucket extends AsyncTask> { …
erdomester
  • 11,789
  • 32
  • 132
  • 234
0
votes
0 answers

GWT Upload is not working in cross domain request

I am using GWTUplaod in my application which is working fine if I don't use cross domain.But it is not working correctly in cross domain scenario. Let me explain, GWT Server is at IP address 5.5.5.10 and GWT Client is at IP address 5.5.5.12 ,…
Ajay Yadav
  • 1,625
  • 4
  • 19
  • 29
0
votes
1 answer

ERR_EMPTY_RESPONSE on multiple file upload with node.js

I am trying to upload multiple files on ftp using node.js. My uploading start successfully and i see the file uploaded in the server location, but after some time not receiving the success message, at browser end i am getting this error "Error 324…
Ilesh Patel
  • 2,053
  • 16
  • 27
0
votes
0 answers

ASP.Net gridview not refreshing when used with Ajaxtoolkit Upload control

I have an asp.net web page that allows for manual entry of a record, or an import from an excel spreadsheet to import multiple records. After the records are added by either process, they display in a Gridview control (bound to a SQLDataReader). …
Christine
  • 11
  • 2
0
votes
1 answer

OnUploadedComplete function of AsyncFileUpload is never hit in detailsview

I have an AsyncFileUpload control in a detailsview. I can browse to select a file to upload. When I start the upload the OnClientUploadComplete function uploadRoomThumbComplete method is executed, but the function in OnUploadedComplete is never…
Adam
  • 6,041
  • 36
  • 120
  • 208
0
votes
2 answers

AjaxFileUpload control doesnt work when page have querystring in asp.net

I have a button on a .aspx page which opens the popup to upload images of selected item. ListEdit.aspx
0
votes
1 answer

Uploading a file in CodeIgniter PHP Using Ajax And jQuery

I am trying to send/ upload a value from an file type input along with data from text inputs to the my do_upload() function in CodeIgniter. I been researching here and on other websites about how to do this and applied the codes in mine, but with no…
0
votes
1 answer

ASP MVC Image upload error when using HttpClient.PostySync

I have asp mvc web page to upload image, I need to validate the image width and height. I try to convert image from FromStream and than post it to server via PostSync method. I do not get any error but image is not posting to the server. If I bypass…
Zeus
  • 3,091
  • 6
  • 47
  • 60
0
votes
1 answer

Multi-threaded loop through collection with C#

I have seen lots of examples on how to do this (read through lots of threads on this site), but I'm having a very hard time getting something that works without locking up the UI thread AND allows me to control the number of threads executing at a…
Fubak
  • 107
  • 1
  • 11
0
votes
1 answer

Using SignalR to display row by row processing of Excel fileUpload

I am trying to figure out how can i use FileUpload along with signalR where i can start processing the uploaded Excel file row by row(without waiting for the file to be fully uploaded). So i have a large(could be upto 2GB, but consider on average to…
user3799325
  • 590
  • 1
  • 8
  • 20
0
votes
1 answer

fileupload control for multiple files, extension check

I have file upload control for uploading multiple files. Like this
fc123
  • 898
  • 3
  • 16
  • 40
0
votes
1 answer

ASP.Net Ajax AsyncFileUpload events not firing after postback - ASP.NET, C#

I have ASP.Net Ajax AsyncFileUpload in one of my pages. All the events including OnUploadedComplete, are firing fine after page load and after page is posted back using a button or something those events are not firing. This is my form tag
Hanushka Suren
  • 723
  • 3
  • 10
  • 32
0
votes
2 answers

how to passing file and other data form by ajax as a POST object to a php page and save it to database?

I've a form with text data and i want to send a form content and file via ajax POST method to a Proccess.php handler and i want to get the binary file as an object to insert it into database(mysql). i know that saving file into database is…
Francesco
  • 69
  • 3
  • 10
0
votes
1 answer

CPU Usage on File Upload with Telerik RadAsyncUpload

I'm having a huge CPU usage when two or more users are uploading files using RadAsyncUpload. We tried to limit the CPU usage at 20% at IIS, but it did'nt solved. One of the cons is that the upload speed sometimes is like 1Kbps :(
VHeid
  • 1
  • 3
0
votes
1 answer

Hapi.js file upload how do I grab the file so I could use imageMagick command line tool on it

I changed the code to output a file instead of a stream. IT provides me the the tmp path and when I use fs.readFile the data when converted to string is fileUpload=Resume_BrianInoa.pdf I am posting a file to hapijs server this is my route handling…
inoabrian
  • 3,762
  • 1
  • 19
  • 27