Wednesday 23 November 2011

Uploading larger file through file upload control in asp.net


We have to change web confige setting for uploading larger file through file upload control.
By default web config allowed only file sized 5 Mb.

for uploading file max 25 Mb Here is web onfig change.


<httpRuntime executionTimeout="90" maxRequestLength="25096"
useFullyQualifiedRedirectUrl="false"
minFreeThreads="8"
minLocalRequestFreeThreads="4"
appRequestQueueLimit="100"
enableVersionHeader="true"></httpRuntime>

No comments:

Post a Comment