Users are hitting a 4Gb limit on downloading large files from our asp.net intranet site. We loop through the file requested by the user like this pseudo code..
do
Response.OutputStream.Writ
e(theChunk
)
Response.Flush()
loop until EOF
We've tried several methods including using Response.BinaryWrite but the downloading of large files always stops at 3.99Gb.
Any ideas on how to bypass this limit?
Start Free Trial