Questions tagged [jsajaxfileuploader]
21 questions
7
votes
3 answers
How to count total selected files on AjaxFileUpload on change java script
Greetings!!
I am trying to count total numbers of files have been selected or dropped in file dropbox in AjaxFileUpload controller. It shows on number of files in Queue. I need to access the numbers of files in queue. How could I do that. I am…

Sultan
- 69
- 4
4
votes
2 answers
AjaxControlToolkit AjaxFileUpload can't upload IIS Reserved File Types
I am writing/ have written a file upload portal for my company that requires the ability to upload a ton of different file types of various sizes and quantities. I used the AJaxControlToolkit AjaxFileUpload control.
The upload works well except when…

Walter Bennett
- 43
- 4
1
vote
0 answers
Folder / Directory with large files upload in Django
I am trying to upload a folder with multiple files that will be zipped before storing it into the database. I am following ajax file upload technique and Django/python to accomplish it. The following code is working fine when the file size is…

reasm001
- 167
- 1
- 11
1
vote
2 answers
How to send multipart/form-data to server using Ajax, PHP and jQuery?
I have a form where I need to send name of the user along with his profile image. So I have created the form below using HTML & Bootstrap -
1
vote
1 answer
Amazon S3 File Upload: throwing up 403
I've been trying to implement a multipart file upload functionality where I'm using AjaxFileUpload to achieve this.
Here's the use-case of my requirement:
Hit server-A to fetch up a presigned URL, which is valid for 15 minutes.
The presigned URL is…
user11184212
1
vote
2 answers
File upload error in asp.net mvc controller ('HttpRequestMessage' does not contain a definition for 'Files'
I have a controller link to an input element for uploading. In my controller I am getting a weird error that I do not quite understand. Severity Code Description Project Path File Line Suppression State
Error CS1061 …

Zidane
- 1,696
- 3
- 21
- 35
1
vote
1 answer
response message is not displayed after ajax upload file
I am new in ajax. I am trying to make a file uploader with ajax in codeigniter. When I upload the file file is uploaded successfully in /uploads folder but response message that is alert or the image view is not working. I have searched several…

Tulshi Das
- 480
- 3
- 18
1
vote
0 answers
Select File button not working in ajaxfileupload control
Using AJAX 4.1.7.1213, added a ajaxFileUpload

John
- 3,965
- 21
- 77
- 163
0
votes
2 answers
aspnetboilerplate .net core, multipage web application v8.1.0 file upload
I am trying to build a file upload with the aspnetboilerplate .net core, multi page web application, version 8.1.0. I am getting null in the controller action method. Here is my code:
var product = _$form.serializeFormToObject();
var…

Ismail Hossen
- 31
- 1
- 7
0
votes
1 answer
Trying to export data from database to excel in django
views.py
def export(request):
print('start')
ourid = request.POST.getlist("terid")
queryset = Case_Info.objects.filter(id__in=list(map(int, ourid)))
Case_Detail = Case_Info_Resource()
print(ourid)
dataset =…

Ashutosh Gupta
- 31
- 1
- 9
0
votes
0 answers
Display dialogue if filename length is too long using AjaxFileUpload tool
I'm trying to display a warning dialogue if the filename length is too long within an AjaxFileUpload_UploadComplete method. I can easily do the logic to count characters but how am I supposed to display a warning dialogue or access the built in…

Shane
- 522
- 1
- 6
- 22
0
votes
1 answer
Ajax File Upload in Codeigniter
there is multiple file upload widgets on my view page, but for reference i have only added 1st here, what i want to do is, i want to select the file using the button and then by ajax method i want to upload the file to directory and get the file…

Ojibix Creatives
- 97
- 1
- 12
0
votes
1 answer
Get value from page when using ajaxfileupload with c#
I'm using the ajaxfileupload from ajaxtoolkit. It sits inside a panel attached to the ajaxpanelextender. It works fine. I click a link inside a grid row which fires a javascript event and the panel pops up with the fileupload control.
function…

FirstByte
- 563
- 1
- 6
- 20
0
votes
1 answer
Ajax File upload in Jquery returns success as result
I know this sounds silly but I am stuck as what ever value that is returned using the controller as Json, i.e 1, 0, true or false and on checking the ajax file upload success part data it contains only "Success" as value no matter what the return…

pavan
- 470
- 3
- 11
- 25
0
votes
1 answer
Upload 3 images from different input type file in codeigniter using ajaxFileUpload.js
I need to upload a three images from different input type file along with text field in single submit button function, here i upload my code, this code is working when i upload only one input type file, but i have some issues while upload a more…

Nanthu .R
- 1
- 2