Dec
03
Upload Large Files in ASP.NET
Filed Under (Web Development) by manatarms on 03-12-2007
Tagged Under : .NET, ASP
Here’s the simple solution to uploading large files in ASP .net.
Add a new key in the web.config. The fileSize (maxRequestLength) is in kilobytes with a default size of 4.
The key to add is
1 | <httpRuntime maxRequestLength="2000000"/> |