How to UpLoad a whole folder to server,not a single file using the FileSelect Dialog
-
:laugh: Our current project contains a feature through which allows the user to upload a folder to the server and compare the files under the server corresponding directory and the client machine directory through which we can decide which file need to be upload and which needn't. Also ,Download the server to the client side which allows to compare and decide which file need to be download and which directory need to be created. Could any body give me some hint on how to implement this function. I wonder whether this function can be implement without custome-define javascrip which will mass the code and bring errors into our page...
-
:laugh: Our current project contains a feature through which allows the user to upload a folder to the server and compare the files under the server corresponding directory and the client machine directory through which we can decide which file need to be upload and which needn't. Also ,Download the server to the client side which allows to compare and decide which file need to be download and which directory need to be created. Could any body give me some hint on how to implement this function. I wonder whether this function can be implement without custome-define javascrip which will mass the code and bring errors into our page...
Hi there, In an ASP.NET application, you basically use the file input element to implement the upload functionality. However, this way only allows to upload a file in one go, so to upload a whole folder, you might want to look for a third party component available out there such as an ActiveX control ... And IMO, you cannot do that even with pure custom javascript.
-
:laugh: Our current project contains a feature through which allows the user to upload a folder to the server and compare the files under the server corresponding directory and the client machine directory through which we can decide which file need to be upload and which needn't. Also ,Download the server to the client side which allows to compare and decide which file need to be download and which directory need to be created. Could any body give me some hint on how to implement this function. I wonder whether this function can be implement without custome-define javascrip which will mass the code and bring errors into our page...
-
Hi there, In an ASP.NET application, you basically use the file input element to implement the upload functionality. However, this way only allows to upload a file in one go, so to upload a whole folder, you might want to look for a third party component available out there such as an ActiveX control ... And IMO, you cannot do that even with pure custom javascript.
-
This can't be done in a regular web page without an ActiveX component or similar. You can't access the files on the client computer unless the user allows it. --- b { font-weight: normal; }