Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript file uploads [closed]

Tags:

javascript

Any alternate thing in JavaScript to make a file upload control ?


actually the problem was, i am creating file upload control dynamically using htmlwriter, and when i use request.form[fileuplodctrl].tostring() , i am getting only the file name not path...

can any one suggest me any other ways to get full file path :)

like image 806
Kishh Avatar asked Jan 03 '09 06:01

Kishh


2 Answers

Here are a few alternatives:

  • YUI Uploader
  • jqUploader (jQuery plugin)
  • jQuery Multiple File Uploader (jQuery plugin)
  • Dojo FileUploader
  • jUpload (Applet)
like image 89
Christian C. Salvadó Avatar answered Oct 06 '22 18:10

Christian C. Salvadó


As far as I know there is no possibility to upload a file with pure JavaScript. You alway need some like a swf movie or a java applet (probably it will also work with a silverlight app). If you do not like to write your own, use one the existing ones from the last answer (Javascript file uploads).

like image 26
TheHippo Avatar answered Oct 06 '22 18:10

TheHippo