I have a download page where there are three download options: Word, Zip and PDF. There is a folder containing .doc files. When the user clicks the Zip button on the page, I want ASP.NET to zip the folder with the .doc files into a temporary .zip file. Then the client will download it from the server. When the user download is complete, the temporary zip file should delete itself.
How to do this using ASP.NET 2.0 C #?
Note. I know how I can unzip and unzip files and delete files from the system using C # ASP.NET 2.0.
Ibrahim AKGUN
source share