I m unable to upload huge files (upto 500MB) using asp file upload control.
Getting the error Exception of type 'System.OutOfMemoryException' was thrown.
I added below tags in web.config, but still getting the same error
<httpRuntime maxRequestLength="8388608" executionTimeout="18000"/>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1048576000" />
</requestFiltering>
</security>
Please help
Go to the complete details ...