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

Internal server error during file upload in android

I want to upload the file from my device to php server.But I'm getting the response as internal server error during file upload.what to do for rectifying this error and upload the file correctly. I have tried like this` try { …
Abserve Tech
  • 117
  • 2
  • 11
0
votes
1 answer

Match a curl request to NancyFx service from browser js

I've got a microservice (in NancyFx) that works as expected for the following cURL command: curl --verbose --form file=@"C:\test\image.png" http://localhost:8080/file/upload The file shows up inside Nancy as expected at: context.Request.Files[0]…
SvdSinner
  • 951
  • 1
  • 11
  • 23
0
votes
1 answer

$_FILES global variable not able to receive data sent from XMLHttpRequest()

I am trying to upload a file to a folder in my server using XMLHttpRequest() and PHP. Here is the HTML file fu2.html:


Ankit Shubham
  • 2,989
  • 2
  • 36
  • 61
0
votes
2 answers

Ajax success on local error on server

I have wrote some code to upload files. On local computer I receive success, but it end with error on server. Here is my ajax code: $.ajax({ url: '@Url.Action("StartUpload", "Upload")' /*'/Upload/StartUpload'*/, type:…
Huseyn Zeynalov
  • 123
  • 2
  • 9
0
votes
1 answer

Passing a form data field to a POST call

I need to make a post call to a url with parameters lets say a="x", b="y", c="z" and d which is form data field. It is the file that i upload in the html form. On making an ajax call, i call. $.ajax({ contentType: false, …
Kanika Midha
  • 317
  • 1
  • 2
  • 9
0
votes
2 answers

Why cant I disable ajaxToolkit:AsyncFileUpload

Iv tried many things (JS/Jquery) to disable this AsyncFileUpload but none are working...please advise..
John
  • 3,965
  • 21
  • 77
  • 163
0
votes
1 answer

Show status of file upload to servlet in browser

I need to show the status of file upload to servlet in the browser, how can this be acheived without using any libraries like jquery, what are the various options for doing this and which one is the best? Best Regards, Keshav
keshav84
  • 2,291
  • 5
  • 25
  • 34
0
votes
0 answers

why file path of uploaded file is undefined ?

I have ajax Async File Upload Control in asp.net, inside update panel. I have called javascript function on it to get filename of uploaded file but it always give Undefined text. Why ?
Stacky Flowy
  • 103
  • 1
  • 10
0
votes
2 answers

AsyncFileUpload: How do I hide the max request length exceeded alert error?

If I upload a file that is larger than the configs max request length I get a "Server Response Error: Unknown Server Error" alert popup. It asks if I want to see the response page and if I click "OK" an application error window pops up saying…
Carter
  • 2,850
  • 9
  • 44
  • 57
0
votes
0 answers

Ajax AsynchFileUpload , How to refresh the update panel after upload complete

Below is my client code to define an asyncfileupload control of ajax control toolkit and a label which i want to change text of
umer
  • 1,196
  • 1
  • 14
  • 33
0
votes
1 answer

handling file uploads sent via xhr using play framework v2.4

I am using play framework v2.4 and am testing file uploads sent via a web form (xhr call via angular). I have tried the following two options in the play framework controller (based on…
0
votes
2 answers

C# AJAX Multiple File Uploads?

I currently have an ASP.NET, C# page that accepts some text and (currently) one file with the MS AJAXToolKit AsyncFileUpload. However, I want users to be able to upload multiple files - they could upload 1 files or up to 10 files. What's the best…
Unknown Coder
  • 6,625
  • 20
  • 79
  • 129
0
votes
3 answers

upload Image or video to server using AsyncTask

Hey guys i'm new to android app development, i'm trying to upload file to server using AsyncTask, but when i click a upload button app get crashed, please help with this.(Sorry if there is any language mistake). UploadFileToServer class /** *…
Shivaraj
  • 1
  • 1
  • 5
0
votes
2 answers

How do I prevent the AsyncFileUpload from sending the file again on postback?

I am developing an application that manages a photo contest. In that application, I use an AsyncFileUpload control for the user selected photo. The server-side UploadedComplete does basic validation, and scales/clip the image as necessary. The…
David Pratte
  • 1,036
  • 8
  • 14
0
votes
0 answers

asyncFileUpload double upload while rename the file?

I used this code : Protected Sub AsyncFileUpload1_UploadedComplete(ByVal sender As Object, ByVal e As AjaxControlToolkit.AsyncFileUploadEventArgs) Handles AsyncFileUpload1.UploadedComplete Try Dim UploadFolderPath As String…
Eid
  • 23
  • 4