Link to home
Start Free TrialLog in
Avatar of scm0sml
scm0sml

asked on

fileupload component max file size?

hi,

i have:
<asp:FileUpload ID="fuImportFile" runat="server" />

when i try browsing to a small file it works fine but the fil i am trying to copy from one location to another is 237mb and i just get a page cannot be found error?

is there a mix size that can be moved from one location to another?
ASKER CERTIFIED SOLUTION
Avatar of Toms Edison
Toms Edison
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you can use the free NeatUpload component which also provides a progress bar 9nice for a 237 mb file): http://www.brettle.com/neatupload
Avatar of scm0sml
scm0sml

ASKER

TechTiger007: worked fine, seems there is a 2,000,000 limit to the technique of adding:
<httpRuntime maxRequestLength="2080000"/> to the web config file.
Avatar of scm0sml

ASKER

i meant just over 2,000,000 kb.