By default the ASP.net upload control is limited to around a 2 MB upload. Trying to upload larger files result in an error.
To set the upload capacity of the upload control place these tags in the web.config:
<httpRuntime maxRequestLength="655350" useFullyQualifiedRedirectUrl="true" executionTimeout="600" />
Or:
<httpRuntime
executionTimeout="90"
maxRequestLength="4096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
/>
Last Modified:
10/18/2006 1:23:27 AM