选项卡更改后 Uploadify 脚本不会触发,因此我会定期asp:FileUpload
进行,这仅允许我进行一次文件交互
有什么建议可以解决吗?
这是脚本;
<script type = "text/javascript">
$(window).load(function () {
$("#<%=FileUpload1.ClientID %>").fileUpload({
'uploader': 'scripts/uploader.swf',
'cancelImg': 'images/cancel.png',
'buttonText': 'Browse Files',
'script': 'Upload.ashx',
'folder': 'uploads',
'fileDesc': 'Image Files',
'fileExt': '*.jpg;*.jpeg;*.gif;*.png',
'multi': true,
'auto': true
});
});
</script>
这是选项卡定义,
<asp:TabContainer ID="tabMyHome" runat="server"
ActiveTabIndex="0"
CssClass="MyTabStyle"
AutoPostBack="True">
<asp:TabPanel ID="tabRecent" runat="server"
HeaderText="Recent Activity"
Width="100%">
</asp:TabPanel>
</asp:TabContainer>