B
Buddy Ackerman
I'm sending file to the client (see sample code below) but when I send a large file the user gets a document contains no
data message.
response.contenttype = "application/x-unknown"
myheader = "attachment;filename=order123.zip"
Response.AddHeader("Content-Disposition", myheader)
Response.WriteFile(FileName, StartPos, FileSize)
I'm dynamically creating the ZIP file (prior to the above code running but in the same page). It only takes about 10
seconds to create the zip file.
Is there some kind of limit when sending files like this?
--Buddy
data message.
response.contenttype = "application/x-unknown"
myheader = "attachment;filename=order123.zip"
Response.AddHeader("Content-Disposition", myheader)
Response.WriteFile(FileName, StartPos, FileSize)
I'm dynamically creating the ZIP file (prior to the above code running but in the same page). It only takes about 10
seconds to create the zip file.
Is there some kind of limit when sending files like this?
--Buddy