None of the proposed methods worked for me. The problem is not with AsyncFileUpload , but with input[type=file].
Finally, I found a way that worked for me with javascript:
function uploadComplete(sender, args) { jQuery(sender.get_element()).find("input[type='file']")[0].form.reset(); }
source share