views:

187

answers:

5

I need to make a upload widget in JavaScript with upload progress that will post file to a IIS server, any suggestions guidelines or documentation?

A: 

JQuery plugin uploadify will upload with a progress bar, and includes functionality for single or multiple file uploads.

It also requires Flash.

edit:

Andy
good point and thanks, but i was asking for the server technology too. If it was an apache server it would be a cgi, but with iis im completelly blindfolded, thank you very much anyway
markcial
@markcial answer amended
Andy
A: 

Take a look at SWFUpload and its demo page
After downloading you will find in the downloaded package examples using C# and VB.Net.

Amr ElGarhy
+3  A: 

Such a component requires both server and client development. If the constant in your case is IIS as a server, then I would recommend you use ASP.NET and Javascript. You could go several different ways depending on how much time and/or money you want to spend.

Slavo
I have personal experience with RadUpload and it is a beautiful product. It costs money but I really love Telerik's suite of components.
Jaxidian
A: 

ASP.NET have a new component : Asyncronous File Upload, which , like the name says, upload it as the user works on the page. It's not what you are looking for, but maybe that might be more helpful than a progress bar...

It's part of the AJAX toolkit for .NET

David Brunelle