How to upload 15gb data using asp.net
I want to upload data upto 15 GB using Asp.Net , it works perfectly for 2 GB. I'm using VS 2005 framework 2.0 I think its maxRequestLength is 2gb can we increase its length.
Please give me any solution I want to send data upto 15 gb.
I increased the max length in web.config file
like for upto 2 GB
<httpruntime>
executionTimeout="110"
maxRequestLength="2097151"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"/></httpruntime>
It works perfectly upto 2 GB up ....not working for more than 2 gb .
I want to upload data upto 15 GB.
|