Re: Newbie questions and issues: Firefox compatibility, FileUploaded not being executed

  •  10-26-2010, 10:24 PM

    Re: Newbie questions and issues: Firefox compatibility, FileUploaded not being executed

    Hi nokturnal,
     
    Question 1
     
    Can you try our demo http://www.ajaxuploader.com/Demo/select-multiple-files-upload.aspx with your firefox browser?
     
    Is that works for you? What version of your firefox/flash/silverlight?
     
    Question 2
     
    Please try the example below. the method FileUploaded should fire after each file uploaded.
     
    1. <%@ Page Language="C#" %>  
    2.   
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
    4.   
    5. <script runat="server">  
    6.    
    7.     protected void UploadAttachments1_FileUploaded(object sender, UploaderEventArgs args)  
    8.     {  
    9.         label1.Text += args.FileName;  
    10.         label1.Text += "---";  
    11.     }  
    12. </script>  
    13.   
    14. <html xmlns="http://www.w3.org/1999/xhtml">  
    15. <head runat="server">  
    16.     <title>Untitled Page</title>  
    17. </head>  
    18. <body>  
    19.     <form id="form1" runat="server">  
    20.         <asp:Label ID="label1" runat="server"></asp:Label>  
    21.         <CuteWebUI:UploadAttachments ID="UploadAttachments1" runat="server" OnFileUploaded="UploadAttachments1_FileUploaded">  
    22.         </CuteWebUI:UploadAttachments>  
    23.     </form>  
    24. </body>  
    25. </html>  
    If you have more questions, you can contact me by mail directly.
     
    Kenneth@CuteSoft.net
     
    Regards,
     
    Ken 
View Complete Thread