Uploader Error in Safari for Windows

Last post 11-12-2012, 10:15 PM by Adam. 2 replies.
Sort Posts: Previous Next
  •  10-30-2012, 10:22 AM 75115

    Uploader Error in Safari for Windows

    I set UploadTYpePriority = "Html5,Flash,Siverlight". This works nicely everywhere except Safari for Windows - users see an alert box saying 'Your browser multiple file selection feature has bugs. Please select one file at a time".

     

    If I change the priority to  "Flash,Html5,Siverlight" it works fine - but then flash is used instead of html5 in browsers that support html5.

     

    Not a critical problem, but it would be nice if the uploader could switch to flash instead of showing the error message. 

  •  10-30-2012, 4:40 PM 75118 in reply to 75115

    Re: Uploader Error in Safari for Windows

    Hi raynovak,

     

    For now the html5 mode not work very well on safari. Please try the example page below, it will switch to flash upload mode for safari browser. Hope it help.

     

    1. <%@ Page Language="C#" Title="Customize the queue UI" %>  
    2.   
    3. <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>  
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">  
    5. <html xmlns="http://www.w3.org/1999/xhtml">  
    6. <head id="Head1" runat="server">  
    7. </head>  
    8. <script runat="server">  
    9.     protected override void OnLoad(EventArgs e)  
    10.     {  
    11.         if (Request.UserAgent.ToLower().IndexOf("safari") != -1)  
    12.         {  
    13.             uploader1.UploadTypePriority = "Flash,HTML5,Silverlight";  
    14.         }  
    15.         else  
    16.         {  
    17.             uploader1.UploadTypePriority = "Html5,Flash,Siverlight";  
    18.         }  
    19.         base.OnLoad(e);  
    20.     }  
    21. </script>  
    22. <body>  
    23.     <form id="Form1" runat="server">  
    24.     <div>  
    25.         <CuteWebUI:UploadAttachments runat="server" ID="uploader1">  
    26.         </CuteWebUI:UploadAttachments>  
    27.     </div>  
    28.     </form>  
    29. </body>  
    30. </html>  
     

    Regards,

     

    Ken 

  •  11-12-2012, 10:15 PM 75230 in reply to 75115

    Re: Uploader Error in Safari for Windows

    This issue is resolved  Please download the latest version then try again.

    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

View as RSS news feed in XML