uploading huge files

M

Mario Rodriguez

HI people, there is an alternative way to upload files than the ASP.NET
native way? Is OK for small files but It doesn't seems to be convenient for
an application where there is a lot of paralell uploadings of huge files
(50MB-100MB)

Any idea? open source components ?

thanks
 
G

Guest

Mario

Actually, the problem you are experiencing is that you can only upload files 4 MB or smaller using the defaults in your machine.config file. So, in your web.config for your app, enter the following

<configuration><system.web><httpRuntime maxRequestLength="102400" /></system.web></configuration

You may need to add some of the other attributes associated with the <httpRuntime> element to make sure it's functioning correctly. Also note that you might have a timeout problem, so you may need to adjust the executionTimeout attribute upward to prevent it from happening. You can look at the SDK documentation for more information

Hope this helps

Christopher Ree
Web Applications Superviso
City of Lubboc

----- Mario Rodriguez wrote: ----

HI people, there is an alternative way to upload files than the ASP.NE
native way? Is OK for small files but It doesn't seems to be convenient fo
an application where there is a lot of paralell uploadings of huge file
(50MB-100MB

Any idea? open source components

thank
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top