I have a web site on IIS7. I can upload a maximum of 100KB, but if I try any files larger than 100K then I get a timeout error.
I have added following setting to my web.config
file but I am getting the same error:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2000000000"></requestLimits>
</requestFiltering>
</security>
What could be wrong?