Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When tried to upload 100 mb file local machine it was successfully uploaded.
On Local machine below are the settings in web.config

<httpruntime executiontimeout="240" maxrequestlength="1048576">
<add key="DocUploadValidationSize" value="104857600">

same application hosted in another server like above settings all are included at that web.config also but when upload file from application hosted on that server it was through error The connection to the server was reset while the page was loading.what are possible changes in iis6?
Posted
Comments
Kenneth Haugland 5-Aug-12 7:20am    
What does the error say, and what error code did you get? Did you search for this error code on google?
Santhosh Kumar Jayaraman 6-Aug-12 10:23am    
where is the web.config code?

in web config file add

system.web tag
httpruntime tag
set attribute value
enable=true
maxRequestLength=size(u want)

set the value of maxRequestLength(KB)
 
Share this answer
 
do you have this code in your web.config hosted in iis server.?

I have written for 200MB file

XML
<configuration>
    <system.web>
      <httpRuntime executionTimeout="999999" maxRequestLength="200000"/>
    </system.web>
</configuration>


Also dont forget to increase execution timout.
 
Share this answer
 
v2
HTML
<system.web>
		<compilation debug="true" targetframework="4.0">
			<assemblies>
				<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
			</assemblies>
		</compilation>
		<httpruntime enable="true" maxrequestlength="102400" />
	</system.web>
 
Share this answer
 
v2

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