Streaming a zip file over http in .net with SharpZipLib

后端 未结 3 1859
我寻月下人不归
我寻月下人不归 2020-12-31 09:56

I\'m making a simple download service so a user can download all his images from out site. To do that i just zip everything to the http stream.

However it seems ever

3条回答
  •  暖寄归人
    2020-12-31 11:00

    Disable response buffering with context.Response.BufferOutput = false; and remove the Flush call from the end of your code.

提交回复
热议问题