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.
- <%@ Page Language="C#" Title="Customize the queue UI" %>
-
- <%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- </head>
- <script runat="server">
- protected override void OnLoad(EventArgs e)
- {
- if (Request.UserAgent.ToLower().IndexOf("safari") != -1)
- {
- uploader1.UploadTypePriority = "Flash,HTML5,Silverlight";
- }
- else
- {
- uploader1.UploadTypePriority = "Html5,Flash,Siverlight";
- }
- base.OnLoad(e);
- }
- </script>
- <body>
- <form id="Form1" runat="server">
- <div>
- <CuteWebUI:UploadAttachments runat="server" ID="uploader1">
- </CuteWebUI:UploadAttachments>
- </div>
- </form>
- </body>
- </html>
Regards,
Ken