While Downloading large zip file size is 10GB using c#. i am getting error like 'The page was not displayed because the request entity is too large.' already i am given the app command in iis and
appcmd.exe set config -section:system.webserver/serverruntime /uploadreadaheadsize: 1048576 /commit:apphost
and i have changed the config file
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding maxReceivedMessageSize="10485760">
<readerQuotas ... />
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>