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
Disable response buffering with context.Response.BufferOutput = false; and remove the Flush call from the end of your code.
context.Response.BufferOutput = false;
Flush