I wrote a function that takes a whole bunch of files, zips them up, and then allows the user to download this zip code through the asp.net website.
However, these zip files will be quite large (for example, 1 GB), so it won’t happen right away, what would I do to be able to work in a separate stream (maybe?), While the user continues to navigate the web to the site, and as soon as the zip is created, you can somehow notify them in order to then download this zip code.
I was hoping for some recommendations on how best to do this in C #, as well as in terms of user interface.
Thanks in advance.
source
share