Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All,

I Need a functionality in my application to allow large file upload e.g. about 1.5GB.

i have google a lot but couldn't found any solution yet.

i did following settings web.config.

VB
<httpRuntime maxRequestLength="2097151" appRequestQueueLimit="100" requestLengthDiskThreshold="10024000" executionTimeout="100000"/>

<pre lang="xml"><system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="2147483648"/>
      </requestFiltering>
        </security>
    </system.webServer>


But still its not working on server.

i also tried using WCF Chunking method but still not able to upload more than 200MB file.

Also tried using FTP but its giving out of memory error.

Is there any free control available for this? also let me know if any paid but cheap control available.

Please Help me its urgent.

Thanks in Advance.
Posted

1 solution

 
Share this answer
 
Comments
Vijay Radia 31-Jul-15 2:04am    
Thanks.. Is there any help available how to use it in asp.net? i have downloaded it but not able to understand how to use it..
himanshu agarwal 31-Jul-15 2:21am    
It's in the same package.

http://neatupload.codeplex.com/SourceControl/latest#dotnet/app/Brettle.Web.NeatUpload/Demo.aspx.cs

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900