Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am just beginner in ASP.NET. In my project:

  1. i have to upload music mp3 folder . here i use asp.net upload control and i can only select a file , i can't select folder. So, how will i do to achieve this.
  2. After select and upload the music folder, i want to show all music file (mp3 songs) contain in uploaded folder on asp.net page..
  3. Then i want to upload(save) this songs file to server (ftp)
  4. I also want to use progress bar in uploading process.

So , please answer my questions. And thanks a lot.

share|improve this question
4  
"So , please answer my questions... and think a lot". LOL – ChrisBint Jun 28 '11 at 10:33
2  
Sorry but i don't see a question mark... – daniel.herken Jun 28 '11 at 10:34
Really, making fun of non-native english speakers? – Simon Halsey Jun 28 '11 at 11:02
You're essentially asking people for step-by-step instructions on how to create the application. That's not what this site is designed for. Please read the FAQ. – Cody Gray Jun 28 '11 at 11:13

closed as not constructive by mdm, Tim Schmelter, abatishchev, Ken White, Cody Gray Jun 28 '11 at 11:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

You cannot upload folder using file upload control , alternatively you can zip the folder and upload via file upload control.

share|improve this answer

You'll probably need to build something in silverlight or flash to achieve this. It is possible using native html, but html doesn't lend it's self to it.

Firstly as mentioned, you can't upload a folder using the native html upload control. A silverlight or flash control could do this, or you could have the user zip the folder first.

Provided you find some way to get the files onto the server, listing them is pretty straightforward.

FTP could be trickier. I'm assuming you want the FTP part to be invisible(ish) to the user, so you have them upload to the server, then ftp from the server to the ftp site. This could be done as a background job, but keeping track of the progress will be tricky. Maybe ajax, or just refreshing the page.

You've got your work cut out.

Simon

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.