Re: Select file dialog does not show on IE8

  •  04-17-2013, 12:03 PM

    Re: Select file dialog does not show on IE8

    Hi WebsterTompkins,

     

    Can you try the example page below? Does it work? The file will upload to your site root.

     

    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. <script runat="server">  
    6.   
    7.     protected void uploader1_FileUploaded(object sender, UploaderEventArgs args)  
    8.     {  
    9.         args.CopyTo("~/"+args.FileName);  
    10.     }  
    11. </script>  
    12.   
    13. <html xmlns="http://www.w3.org/1999/xhtml">  
    14. <head id="Head1" runat="server">  
    15. </head>  
    16. <body>  
    17.     <form id="Form1" runat="server">  
    18.         <div>  
    19.             <CuteWebUI:UploadAttachments ID="uploader1" runat="server" OnFileUploaded="uploader1_FileUploaded">  
    20.                </CuteWebUI:UploadAttachments>  
    21.         </div>  
    22.     </form>  
    23. </body>  
    24. </html>  
     

    Regards,

     

    Ken 

View Complete Thread