Hi,
No. That's because your IIS ignores the request. Check IIS 7 request filtering in this topic:
http://doc.essentialobjects.com/library/1/ajaxuploader/troubleshoot.aspxSay our limit is 30M and IIS's limit is 100M, then:
1. If you upload a 10M file, then it works fine because it goes through both limits with no problem;
2. If you upload a 40M file, then IIS will let it through right away and it will hit us. We will determine that you are over our limits and send an error message to client side right away telling you that you are over limit;
3. If you upload a 120M file, then IIS will INGORE the request because it's over IIS's limit. In that case the request will never reach us. Eventually you will get a time out in this case;
This is a security feature built-in with IIS to avoid server being flooded with large requests. So you probably do not want to turn it off completely. That means there will always be a limit that would trigger a time out for you.
Thanks