Skip to content Skip to sidebar Skip to footer

Archiving File On Client's Computer

my problem is that I need to find a way to archive a file uploaded by the client and placed into a folder onto the client’s machine using a web app created in C# asp.net. Curren

Solution 1:

Check out this demo for zip.js project: http://gildas-lormeau.github.io/zip.js/demos/demo1.html

You have in fact three options:

  1. zip it on client side using JS and upload to server from memory
  2. zip it on client side using things running on client side like Java Applet / Flash or Silverlight
  3. make click once application which will install from the browser zip the files and upload to server (probably too elaborated... for simple issue)

Post a Comment for "Archiving File On Client's Computer"