Upload big size file
how can i uplaod file which size greater then 2 gb........
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mukesh KumarPosted Jan 8, 2012, 11:47 PM
In case of IIS 7.0, both integrated and classic mode:
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648"/>
requestFiltering>
security>
system.webServer>
configuration>
In case of IIS 5.1, 6.0:
<configuration>
<system.web>
<httpRuntime maxRequestLength="2097151" />
system.web>
configuration>