file-upload

JSF2.0 simple file input

I'm trying to add a very simple file input to my webapp which I'm doing using JSF2.0 and RichFaces 3.3.3, the thing is I really dislike the richfaces fileInput component and I'm looking for something simpler (in terms of use and looks), so far I've found: tomahawk's fileInput - but tomahawk only supports JSF1.2 trinidad fileInput - but...

ASP MVC 2 Uploading file to database (blob)

Hi, I am trying to upload a file via a form and then save in in SQL as a blob. I already have my form working fine, my database is fully able to take the blob and I have a controller that take the file, saves it in a local directory: [AcceptVerbs(HttpVerbs.Post)] public ActionResult FileUpload(int id, HttpPostedFileBase uploadF...

How can I ensure my programmatic uploads are done in the correct order?

In our application, we store two copies of a file - an approved one and an unapproved one. Both track their versions separately. When the unapproved is then approved, all of its versions are added as new versions to the approved file. To do this properly, my code has to upload each version separately into the approved folder, and update ...

Are there any libraries or samples for non-duplex WCF chunking?

I'm looking for a way of implementing a file transfer service over HTTPS which uses chunking to cope with intermittent connectivity loss and to reduce the large timeouts required by using Streaming. Because the client may be behind firewalls, the Chunking Channel sample on MSDN isn't suitable. There is an old discussion about this on th...

Why is the HtmlControl file upload'button is not displayed perfectly in ie7?

html: I use it in my page,but the file upload button of the control display only part of it,My computer is only IE6,so i test it in IETester ...

Zend Element File with multifile option

I´m using the Zend_Form_Element_File to upload some files that works just fine, but only if I fill all fields. $this->addElement( 'file', 'moh_file', array( 'label' => 'Datei', 'destination' => '/tmp', 'ValueDisabled' => true, 'MultiFile' => 3, 'validators' => array( arra...

SWFUpload alternatives

I've developed a system that uses SWFUpload to easily allow the user to upload multiple files with a progress bar showing them the upload progress. It all works fine in my development environment, but is failing for some users in the wild with the Flash movie not loading. I can see the Flash movie is there, if I right click it a window a...

can i make file dialog in input type file in html to be multi select?

I want to implement a multi file upload I was thinking if its possible to have a browse button open a file dialog which may allow me to select more than one file and once i select them these files can upload. I am doing this on a website and using php jQuery etc. By looking at the answers i feel that multi-select is not possible. So i a...

File Upload in MVC on an embedded user control .ascx file

Following the example here: http://www.highoncoding.com/Articles/689_Uploading_and_Displaying_Files_Using_ASP_NET_MVC_Framework.aspx I have an .ascx file I'm using as an editor template, and I would like to use this method to upload files, my .ascx file looks like so <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<M...

Error uploading in high speed internet connection?

Hi, We have a site with video upload option. we are using slick upload to handle the upload process. When i try to upload a sample file on low speed internet connection[Cell modem], which is very slow, the upload took an hour, but it completed successfully. I did the same with a high speed internet connection, but its failed. I tried ...

Restrict file upload control to upload only certion type of files in c #.

In web application how to restrict the uploaded file types when opening file upload dialog. If you are using ASP.NET & c# ...

Upload a file to an html page with no backend?

Is it possible to read the contents of an uploaded file (through <form><input type="file">) from inside javascript with no backend? I suppose it's possible with HTML5, but what about HTML4? ...

How to track a file is uploaded successfully or not in file upload control using c# ?

How to track a file is uploaded successfully or not in file upload control using c# ? so that we can give some custom message? ...

Automated file upload from browser

After all what I've read on this topic, I know that there is no way to do automated file upload from browser without some kind of "elevated permissions". But, elevated permissions is something what I have, bacause the application runs on intranet and user currently enables access to ActiveX control that makes it possible to do some docu...

File manager for ASP.NET MVC 2?

I'm trying to find a way to implement file manager functionality in an mvc 2 application. I've looked at jquery etc for ways of doing this. I have been able to implement a simple upload/download functionality with just an input file button and so on, and I have also tried out jquery File Tree (http://abeautifulsite.net/blog/2008/03/jquer...

Handling file uploads in App Engine (python)

Hi, I am trying to implement a file upload solution using app engine and python. The thing which I am struggling with checking whether there is actually a file attached to the form or not. I am setting the enctype="multipart/form-data" and in principle it works. My python handler looks like this: fileupload = self.request.POST["content...

savepath? saving excel to sql?

I'm really confused on how to go about doing this. - I want to be able to upload an excel sheet from my web app using the fileupload control. - Next, I want to read each individual row under the first row. (so starting from row 2, row 1 will be the column title). - Finally, I want to pass the Strings I've read into another method that'll...

HTTP upload script that doesn't fail on disconnect?

The upload form on http://www.example.com/ (a service that uploads to multiple online file hosting services) works really well; I was uploading a file and got disconnected partway through, but when I got back online the site resumed the transfer automatically. There doesn't appear to be any flash involved; does anyone know how it's done,...

How to upload a file to server on objective C?

Hi, everyone, I want to ask a question about the objective C. I have create a .csv file and I want to upload to a server. However, I have no idea on how to do it. Can anyone provide any example or library for me to do? Thank you very much. ...

Uploading multiple files per field and storing in a db with codeigniter

Hi, I have a form which uploads multiple file fields into a db using codeigniter. I need to be able to upload multiple files for each field. I understand that this could be achieved using some jquery magic, however, my problem is how do I intercept the multiple files and what is the best way to store them in my database? At the minute...