AsyncFileUpload “Cannot Access A Closed File exception

By |2018-04-01T02:14:09+00:00February 20th, 2011|Categories: ASP.NET|Tags: , , |

Quick post for those who may be suffering from a "Cannot Access A Closed File" exception when attempting to upload/save larger files with the AjaxControlToolkit AsyncFileUpload control... Fix for me: Add/edit an entry in your app's web.config <httpRuntime requestLengthDiskThreshold="15360" /> In my case this was caused by having a requestLengthDiskThreshold set too low, and was causing [...]