Hi all,
I focus now a new problem .
I want to make the user upload a complete Folder to the server .
Not file by File
How can i do it .
and also if any one have a control (Browsing directory) instead of HTML file input?

Thanks:rolleyes:

Remember the web is client-server, and ASP.NET doesn't change that.

File uploads are done via the <input type="file" /> HTML element.

That takes a file, plain and simple. So if the user wants to upload an entire folder, they'll need to zip it up into a single zip file, and upload that.

It will be up to your server code to process that zip file.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.