Have a following question:
Is it possible to chose folder on client and load all files from this client to server using only ASP.NET app without any additional app on the client side?
I really don’t know how it possible or is it possible to do.
Thanks in advance.
No, that’s not possible using pure HTML and javascript. The closest you could get is HTML5’s
<input type="file">control which allows you to perform multiple file selection. So you could have the user enter inside the folder and then select all files. This could be done by appending themultipleattribute:Of course the browser that your client is using must support it.