Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear Sir,

I am working in asp.net project i have some problem when a large amount of file upload in server
this large amount of file does not upload when i am executed on server and if this files upload on local host or local machine upload easily.

I am working in Webconfig file also this are changes as follows

HTML
<system.web>
   <httpruntime maxrequestlength="1024000" executiontimeout="240" requestvalidationmode="2.0" />
</system.web>


But this work on local host machine not in server so please give me any information or code as soon as possible.

I have one doubt this code can be run on IIS-7 or other IIS Please try to give me answer as soon as possible...
Thanks in advanced !!
Posted
Updated 17-May-13 3:31am
v4

1 solution

make it:
C#
<httpRuntime executionTimeout="110" maxRequestLength="1000000" requestLengthDiskThreshold="80" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="5000" enableKernelOutputCache="true" enableVersionHeader="true" requireRootedSaveAsPath="true" enable="true" shutdownTimeout="90" delayNotificationTimeout="5" waitChangeNotification="0" maxWaitChangeNotification="0" enableHeaderChecking="true" sendCacheControlHeader="true" apartmentThreading="false"/>
 
Share this answer
 
v3

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