I have a problem where when I upload a file, the progress bar is being shown in FireFox, but not in IE. Here is my code:
<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
<CuteWebUI:Uploader runat="server" ID="uplMusicFile" InsertText="Upload File">
<ValidateOption AllowedFileExtensions="mp3" />
</CuteWebUI:Uploader>
<asp:Localize ID="locUploadedFileName" runat="server" Text="Uploaded File Name:" />
<asp:Label ID="lblUploadedFileName" runat="server" Text="No File Uploaded" />
</ContentTemplate>
</asp:UpdatePanel>
Anyone have any ideas?