I am using the AJAXFileUpload control (not ASYNCFileUpload) and everything is working as expected except for the way that browsers other than IE handle errors when the maximum file size specified in web.config is reached.
I want to limit the file upload size to 10MB and have updated the web.config accordingly. If I try to upload a file larger than 10MB using IE the upload control changes its upload status to Error (and turns red) and gives you the option to cancel the failed download which works great.
However, if you upload a file larger than 10MB in any other browser (Chrome, FireFox, etc) the upload control breaks. The status gets stuck on 100% uploaded, and then none of the buttons in the control work (cancel, remove) until the page is reloaded.
Does anyone have a work around for this?
I'm fine with the way IE handles it, but really need the same functionality in other browsers.
Thanks!