ASP C# How to handle large files from database?
- by Martijn
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.