I am using file upload control in ASP.Net, following the approach below.
http://weblogs.asp.net/jgalloway/archive/2008/01/08/large-file-uploads-in-asp-net.aspx
The default value of 4MB is set in machine.config, but you can override it in the web.config file. For example, to increase the download limit to 20 MB, you will do the following:
<system.web>
<httpRuntime executionTimeout="240" maxRequestLength="20480" />
</system.web>
Question:
To what level (MAX size) can I increase the requested length and what will affect the performance on the site if we allow the user to upload files of 50-60 MB in size.
source
share