No Progress bar in IE

Last post 06-04-2008, 5:43 PM by gcaprio. 4 replies.
Sort Posts: Previous Next
  •  05-29-2008, 10:44 PM 40918

    No Progress bar in IE

    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:" />
                                &nbsp; &nbsp;
                                <asp:Label ID="lblUploadedFileName" runat="server" Text="No File Uploaded" />
                            </ContentTemplate>
                        </asp:UpdatePanel> 

    Anyone have any ideas? 
  •  05-30-2008, 1:35 PM 40947 in reply to 40918

    Re: No Progress bar in IE

    1. Is that possible your file is not big enough and upload speed is too fast?
     
    Can you add the following entry to your web.config file then try again?
     
     <!-- You can set a low upload speed to test the progress bar. -->

     <add key="CuteWebUI.AjaxUploader.UploadSpeedKB" value="20" />
     
    2. If you still cannot see the progress bar, can you try the following code?
     
    <%@ Page language="c#"%>
    <%@ Register Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" TagPrefix="CuteWebUI" %>
    <html>
    <head>
    </head>
    <body>
        <form id="Form1" method="post" runat="server">
     <CuteWebUI:Uploader runat="server" ID="Uploader1">
     </CuteWebUI:Uploader> 
        </form>
    </body>
    </html>


    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  06-02-2008, 9:36 PM 41010 in reply to 40947

    Re: No Progress bar in IE

    1. We were already using that setting in our web project.  The upload works fine in FF, but not in IE.
    2. The sample code works in IE just fine.  The demos run fine.  Everything std from cutesoft runs fine.  Our actual page does not.  I'm hoping I can find some answers on this forum.
     
    Anything else to try ?
     
  •  06-03-2008, 11:25 AM 41049 in reply to 41010

    Re: No Progress bar in IE

    Hi,
     
    We have checked your sample and unable to reproduce that issue. All works fine.
     
    Can you make a full code that occurs that bug and send the sample code to us , so we can test it ?
     
    Thanks,
    Terry
     
  •  06-04-2008, 5:43 PM 41130 in reply to 41049

    Re: No Progress bar in IE

    OK, we've figured it out.  Apparently, we were using an old version of the main .dll.  We got the latest one and now it works. 
     
    Can I suggest that CuteSoft start to version that .dll and put out release notes ?  The only way we found this was by redownloading the demo and re-copy the dll as a last resort.
     
View as RSS news feed in XML