file-upload

widget to upload multiple files

Hi I'm developping an application using Gwt and Gxt (Ext GWT). There isn't any widget in Gxt to attach many files in a form before posting it. I'd like something like this widget in extJS: http://www.extjs.com/learn/Extension:UploadForm Does someone know a solution to add such a widget in my gxt project ? Thanks for yours answers. ...

how to get full path from fileupload using Javascript

Hi friends, I need to know how to get full path from fileupload using javascript, I tried using the following coding but of no use <input type="file" id="picField" onchange="preview(this)"> <script type="text/javascript"> function preview(test){ var source=test.value; alert(source); } </script> but in the alert message, i ...

How to make own file upload using HTML and javascript

Hi friend, I need to make new own file upload field using HTML and Javascript since Built-In file upload not showing full path of the file I need to make it similar to file upload by using button and textbox please help to solve this problem ...

Cross-browser upload big files over HTTP (partly)?

I need to upload big files over http without affecting IIS timeout (using multiple independent requests). Should I use any plug-ins or it is possible with javascript? ...

Upload file type verification with Rails and Javascript

I'm currently working on a project where users can upload datasets in CSV format. Is there a good way with Ruby other than checking file extension to determine if they're really uploading a CSV and not some executable or some other file type? ...

Adding unobtrusive progress bar to old-school file uploads

You all know the new generation of fancy, mostly Flash-based file uploaders like SWFUpload that can show a progress bar while uploading - a great improvement especially for shaky and low-bandwidth connections. However, these uploaders all bring their own logic of how to handle uploads on the client side. I am looking for an unobtrusive ...

How to go about a file upload in a Web Application (ASP.Net, C#, IIS)

Requirements: On a web page in our web application, we have a requirement to upload a file. The file is most likely to be a pdf (pdf file has form fields filled in by users), or scanned jpeg/tiff/gif files in zipped format where user has scanned the form. The size of the file is likely to be be 3-7Mb. The file will be stored in as BLOD...

How can I upload a file and save it to a Stream for further preview using C# ?

Hi!! Is there a way to upload a file, save it to a Stream, this Stream I will save it temporarily in a Session and, at last, I will try to preview this uploaded file that is in this Session?? For example, a pdf file. Thanks!! EDITED Here's what I'm trying to do: HttpPostedFileBase hpf = Request.Files[0] as HttpPostedFileBase; byte[...

How can I upload a file in an ASP site? (NOT ASP.NET & NO DLL)

I want a simple method to upload file in ASP. Just one function ...

YUI Editor - Image Upload

Is there a plugin to upload images via the Images window, that will work with YUI 2.8.0r4 ? There is one but that only works with 2.3.1 :( Any ideas? ...

HTML-PHP Uploader Query

well, for a college project I'm designing an uploader site (u give it a file, it uploads it...kinda like imageshack or mediafire). Anyway, I got the whole thing working well with a html form and a php script to store the uploaded file in a "/uploads" folder. now here's the thing.....I want to have a drop down list in HTML section, and d...

Multiple Uploads

hey I need the help with the following. I have a website, altough I was not a 100% programmer, I am trying to navigate within the programming of the site. It work in asp.net 2.0. I have an image gallery, but the only problem is that I can only upload 1 image at a time. I need some help how i can integrate multiple images on the site. b...

Is there a good jQuery Drag-and-drop file upload plugin?

Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this: $j('#MyForm').enableDragDropUploads('.upload-area') With the upload target being the action of the form. Any solution must not prevent a regular file field from being usable (using traditional...

File upload and storage handling in a web application

I am currently using php and ajax file upload to develop a web application. in a web application involves getting the files uploaded from user, e.g email client, photo gallery. This is the scenario that i got stuck. When user uploads some files but close the browser without submit, i want to delete those files and only move the releva...

Upload Validation for photos

I got a javascript code like this to validate the file extension for my users when they upload pics on my server.It should allow both .jpg and .jpeg photos however only .jpg files are accepted and it invalidates if the photo ends with .jpeg.Here's the code: function validate(x) { var extensions = new Array("jpg", "jpeg"); var p...

How to upload huge files from Nokia 95 to webserver?

I'm trying to upload a huge file from my Nokia N95 mobile to my webserver using Pys60 python code. However the code crashes because I'm trying to load the file into memory and trying to post to a HTTP url. Any idea how to upload huge files > 120 MB to webserver using Pys60. Following is the code I use to send the HTTP request. f = ...

Upload images to a subdomain folder like orkut in asp.net

hai guys, I want to upload images through my web page to a folder in a subdomain of my website is it possible in asp.net.. I ...

ASP.NET MVC, MVVM and file uploads...

Hi, I'm big fan of the MVVM pattern, in particular while using the ASP.NET MVC Framework (in this case v2 preview 2). But I'm curious if anyone knows how to use it when doing file uploads? public class MyViewModel { public WhatTypeShouldThisBe MyFileUpload { get; set; } } ...

Best way to handle very large http uploads and downloads on the server-side

I've an upcoming project where I will need to handle very large uploads from browsers (either the classic input type="file" or a Java Applet), and looking for the best tool to do the job on the server. Theses are the things I need : low memory consumption on the server ability to save the file in its final destination on the server (n...

Attaching file not having the complete path name

Whenever I try to attach any file from HTML page in web browser(either Google chrome or Mozzila) and send to Servlet, I'm getting just getting the name of the file without having it's complete path. If I make an attachment of any file from C drive, I'm not getting it's complete address. And whenever I try to send this file name to mail ...