fileuploader

Any good multiple file uploader for ASP.NET websites?

I need a multiple file uploader for an asp.net website. It'll be great if i can be a drag-and-drop file uploader. I'm assuming I would have to use something like flash to do that. ...

<input type="file" /> not showing files path

I have a file uploader but it's not showing the files path (so you can only upload files that are in the same folder) How can I make it so show's the files path (desktop/something/yes/dog.swf) ...

How to upload multiple files in jsp?

I have been using "input type='file' " tag to upload single file but I want to extend the functionality to upload multiple files (selecting multiple file in the same dialog box to upload). I don't have any idea how to accomplish these, any ideas and suggestions? ...

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...

Fileupload question?

I want to check whether the file upload control has any file or not because I want to do the validation on it. How can I do it? ...

Flajaxian File Uploader Settings

Hi, I have renamed a image that has been uploaded using FileNameDetermining... Then I launched the javascript FileStateChanged to show the image that has been uploaded to the user..... Is this possible? Because the javascript's file.name actually takes the actual filename and not the renamed filename.. how could I use the renamed file...

SWFUpload works in IE, but not in Firefox

Using SWFUpload v2.2, Firefox 3, IE 8, Flash 10 In my ASP.NET application all uploads are being processed by upload.aspx (I have the correct upload_url set in the settings object). In IE 8 the uploads hit the upload.aspx page and are processed, but in Firefox they do not. Any suggestions? Most of the code for the page that the user vis...

Text editor(FCKEditor) ruby on rails/ PHP

I have an application that is running on Rials so now I want to add the text editor(FCKEditor/TinyMCE) to adit text/uploading images on website. I have google the internet until I got FCKeditor for Rails(http://rubyforge.org/projects/fckeditorp/) "which has a function of uploading pictures but ones you uploaded the images you can't dele...

getting error while integrating flajaxian.FileUploader

Hi to all. I am facing problem with the control flajaxian.FileUploader i.e. after downloading the dll file while implement i am getting following error message i.e. Request for the permission of the type 'System.Web.AspNetHostingPermission, System, version=2.0.0.0, culture=neutral, PublicKeyToken=b77a5c56193e089' failed. Help me to sor...

How to set the value dynamically to a asp.net file upload control?

I have a fileupload control.I'm selecting a image using the control and saving it in the database.In the edit mode,I need to assign the path of the image in the textbox of the file upload control.Is it possible ?? If so,how could I achieve it?? Regards, Srinivas. ...

Handle FileUploader.

i want to get the whole path of FileUpload and change the image when FileUpload OnChanged event triggered at Client Side. ...

Is there an easy way to add a secure file upload form (username, password, select file) to a website?

Hi, I am very new to website design. Have an architect who wants his clients to enable his clients to upload (ftp - but don't know if http could be a better alternative?) files (plans etc.) to him, through the website I'm designing for him. I have seen similar things available on printers websites... I have seen uploadify, but it requ...

File uploader in asp.net mvc

How can identify input (type="file") id of fileupload while file uploading to server. Let me explain in detail: I have multiple file upload control on my page and different control save file on different folders like "Fileupload1" will save file on "Folder1" and so on. ...

ASP.NET MVC File Uploading

HI there, My model (partial) public class Document : HttpPostedFileBase { public string DocumentTitle { get; set; } public string DocumentType { get; set; } My action [AcceptVerbs(HttpVerbs.Post)] public ActionResult AddDocumentToVault(Document model) { foreach (string upload in Request.Fi...

ASP.NET Request.Files is empty on flash control postback

I'm using the new Aurigma Image Uploader Flash control, and creating sample pages works great. However, when I drop this control onto an existing page on my existing site, it doesn't work. I can only suspect something in the masterpage or something else on the page is messing with it. I've tracked down the problem - Request.Files is e...

using slick upload with mvc 2 and jquery / ajax

Hello Everyone! i'm trying to get slick upload working inside a jquery ui dialog. I've got it uploading the file just fine, and i've checked out the samples, and they all end up with the entire page re-loading. i've managed to make it so it doesn't do it's final postback to deal with the files after it uploads by setting the AutoPost...

Problem reading excel sheet

SqlDataReader reader; string r=""; if ((FileUpload1.PostedFile != null)&&(FileUpload1.PostedFile.ContentLength > 0)) { r = System.IO.Path.GetFullPath(FileUpload1.PostedFile.FileName); } OleDbConnection oconn = new OleDbConnection (@"Provider=Microsoft.Jet.OLEDB.4.0;" + @"Data Source="+r+";" + @"Extended Properties=""E...