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

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 Button, but I can't find any property for this.…
RKP
  • 5,285
  • 22
  • 70
  • 111
4
votes
2 answers

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, the user needs to know what the file has been named…
Sam
  • 41
  • 1
  • 3
4
votes
2 answers

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 submit button, to find out my asyncFileUpload…
Spooks
  • 6,937
  • 11
  • 49
  • 66
4
votes
4 answers

How to prevent files to upload if exceed specific size limit?

In MVC, I need to make restriction to upload file limit size should not exceed 5 MB. Here, i need to validate and restrict at client side only if exceed 5MB size limit. I able to achieve using ajax file uploader but, it support IE 10 and above but,…
dsi
  • 3,199
  • 12
  • 59
  • 102
4
votes
1 answer

How to check if user interrupted ajax upload

I use this piece of code to upload files via ajax to my website: jQ(document).on('submit', '#upload_file', function(e) { e.preventDefault(); jQ('#mensagem').html('
Enviando…
Victor Hugo
  • 109
  • 1
  • 12
4
votes
1 answer

REST: Uploading large files

I am wondering what is the recommended way to upload a large file using REST. Giving that the time taken from the server to write the file on disk can be large, should I wait for the writing operation to end before sending the 201 reply to the…
user601836
  • 3,215
  • 4
  • 38
  • 48
4
votes
1 answer

display gridview after upload file in AsyncFileUpload in updatepanel asp.net c#

I want use AsyncFileUpload in updatepanel after uploaded file, I want display uploaded file in gridview. I use this method, but after upload I can't see gridview. Please help me to see my gridview. my scripts is: