i have a website in windows server 2008. I'm using aspupload component. the upload works when the file size is small but fails when the size is huge.
Is there some settings in iis 7 that limits the upload size?
-Vivek
i have a website in windows server 2008. I'm using aspupload component. the upload works when the file size is small but fails when the size is huge.
Is there some settings in iis 7 that limits the upload size?
-Vivek
A quick google search for your component brings us to this page:
Which lists the following limitation:
files up to 2 GB can be uploaded
When I see a 2GB number like that, I'm inclined to think the limiting factor is a signed integer somewhere in their code. Replacing that integer(s) with a Long would greatly increase the supported file size, if you have the ability to change that code.
AspMaxRequestEntityAllowed in metabase.xml for IIS needs to be changed.
This link should help.
Hi all
Thanks for all your replies. I got this issue fixed.
I went to C:\Windows\System32\inetsrv\config\applicationhost.config
and added the following line under my website
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1000000000"/>
</requestFiltering>
</security>
thanks again
-Vivek