TypeError: Oxa3 is null

Last post 10-11-2013, 1:33 PM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  10-10-2013, 9:06 PM 78101

    TypeError: Oxa3 is null

    Hi. I'm experiencing some weird behavior for some uploads.

    We have a site that runs a single physical site for multiple sub domains. For one specific domain I keep getting: TypeError: Oxa3 is null

    in Firebird after the upload completes.

    The aspuploader never invokes any OnFileUploaded event that it normally does.

     

    It's a .net solution. C#. 

     

    Any ideas would be greatly appreciated.

     

    Best regards,

    Ruvan

    Frontlab 

  •  10-11-2013, 1:33 PM 78109 in reply to 78101

    Re: TypeError: Oxa3 is null

    hi,

     

    Can you try the example page below on your site? Does it get the same problem? If yes, can you post this example page url? So we can check on it directly.

     

    1. <%@ Page Language="C#" AutoEventWireup="True" %>  
    2.   
    3. <%@ Register Assembly="CuteWebUI.AjaxUploader" Namespace="CuteWebUI" TagPrefix="ajaxuploader" %>  
    4. <html>  
    5. <head>  
    6.     <script runat="server">  
    7.   
    8.         protected void uploader1_UploadCompleted(object sender, UploaderEventArgs[] args)  
    9.         {  
    10.             for (int i = 0; i < args.Length; i++)  
    11.             {  
    12.                 label1.Text += args[i].FileName;  
    13.                 label1.Text += "--";  
    14.             }  
    15.         }  
    16.     </script>  
    17. </head>  
    18. <body>  
    19.     <form id="Form1" runat="server">  
    20.         <CuteWebUI:UploadAttachments ID="uploader1" runat="server" OnUploadCompleted="uploader1_UploadCompleted"></CuteWebUI:UploadAttachments>  
    21.         <asp:Label ID="label1" runat="server"></asp:Label>  
    22.     </form>  
    23.   
    24. </body>  
    25. </html>  
     

    Regards,

     

    Ken 

View as RSS news feed in XML