I need my asp.net web app to enable users to select a folder from the file system and also from network, to copy the content files to another folder.
I am not going to use javascript activeX.
Please help as to how to achieve this.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
FileUploadcontrol.Here is a tutorial on how to use it.
The control uses an HTML
input type="file", which uses the browser facilities for browsing files on the client machine (which, in turn, can use the facilities provided by the OS, such as a standard file browse dialog).