Large Downloads

  • Thread starter Thread starter Jerry Camel
  • Start date Start date
J

Jerry Camel

I know I've seen postings on this, but I can't find them anymore...

I was able to fix the issue of large uploads by adding <httpRuntime
maxRequestLength="1048576" /> to the web.config file. I thought that would
also allow for large downloads. Apparently not. I've seen postings about
large downloads that mention disabling page buffering (or something like
that) - I added "Response.BufferOutput = False" to my code, but that didn't
fix it.

Someone please tell me how to allow large file downloads from my page.
Please...?

Jerry
 
Actually, I worked around this by streaming the file in blocks. For the
most part it works just fine. Thanks for the response, though.

Jerry
 
What errors are you getting?

Have you tried increasing the execution timeout?

<httpRuntime executionTimeout="600"

Tommy,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top