本文介绍了如何在按钮单击后上传文件夹中的文件后刷新AsyncFileUpload的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的AsyncFileUpload位于updatepanel中。如果我在AsyncFileUpload中上传fileor imagetha路径无法清除另一个上传文件。我想在点击按钮时刷新AsyncFileUpload。
谢谢
my AsyncFileUpload is in updatepanel. If I upload fileor imagetha path in AsyncFileUpload cannot clear for another upload file. I want to refresh AsyncFileUpload on button click.
Thanks
推荐答案
<asp:asyncfileupload id="AsyncFileUpload1" onclientuploadcomplete="success" runat="server" xmlns:asp="#unknown" />
Javascript:
Javascript:
function success() {
var fu = document.getElementById("AsyncFileUpload1");
document.getElementById("AsyncFileUpload1").innerHTML = "";
}
--Amit
--Amit
这篇关于如何在按钮单击后上传文件夹中的文件后刷新AsyncFileUpload的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!