ASP C# How to handle large files from database?
Posted
by Martijn
on Stack Overflow
See other posts from Stack Overflow
or by Martijn
Published on 2010-06-01T14:37:46Z
Indexed on
2010/06/01
14:43 UTC
Read the original article
Hit count: 154
In my web application I am working with files. Some files are very large. I use Response.Write() to write the file to the browser. This goes well for the smaller files, but for large files this can take a while and the bandfwith is fully used.
My question is, is it possible to split large documents and send it piece by piece to the browser?
I hold the document as a property of an object.
© Stack Overflow or respective owner