Upload Large Files in ASP.NET

Filed Under (Web Development) by manatarms on 03-12-2007

Tagged Under : ,

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"/>

Leave a Reply