Problem Uploading 10 meg files using built in.net file upload or aspupload

  • Thread starter Thread starter Dude
  • Start date Start date
D

Dude

Somewhere between 9 - 11 megs I am unable to upload, using either
aspupload or the built-in uploading functionality.
here is the code from web.config
<system.web>
<httpRuntime maxRequestLength="35192" executionTimeout="1200" />
afer submitting the form, it takes a few minutes for the page to
process, then a blank page comes up, it appears to be doing more
processing, but the new page hangs indefinately.
 
Default file upload processing can be very slow because the upload is sent
up to the server loaded into memory and then processed. Can you debug this
page? Is it actually reaching your code in question?

Maybe there's a logic problem in the code?

--

Rick Strahl
West Wind Technologies
http://www.west-wind.com/
http://www.west-wind.com/wwHelp
 
I think you should try setting your macine.config file
like the attribute:
<httpRuntime executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false" minFreeThreads="8"
minLocalRequestFreeThreads="4" appRequestQueueLimit="100"
enableVersionHeader="true"/>
 

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