UPloadder not working in IE7, but only on one particular page of application.

Last post 02-19-2009, 8:12 PM by cutechat. 4 replies.
Sort Posts: Previous Next
  •  02-18-2009, 4:17 PM 48969

    UPloadder not working in IE7, but only on one particular page of application.

    We are experiencing issues with the ajax uploader in IE7.
    It fails to upload the file chosen from the browse dialog.
    After selecting a file, and clicking OPEN button from browse window, we get a javacript error:
     

    Error: unhandled error in silverlight 2 application [Common_MethodFailed]
    Arguements: ...unavailable...
     

    The funny thing is that it works fine on another page in the application and we cannot see any relevant difference in how they are placed on the pages, or coded behind.
     
    Knowing that i'd have to send my code to get a real answer, does anyone know if sloppy css, javascript, or html tags on one page could be messing things up for the uploader?  No apparent errors show up except this, and  it works fine in FF.
     
     
    Al

  •  02-18-2009, 4:21 PM 48971 in reply to 48969

    Re: UPloadder not working in IE7, but only on one particular page of application.

    Al,
     
    1. Are you using https?
     
    2. Do you have problems with our online demo?
     
    Can you try the following page?
     
    <%@ Page language="c#"%>
    <%@ Register Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" TagPrefix="CuteWebUI" %>
    <html>
    <head>
    </head>
    <body>
        <form id="Form1" method="post" runat="server">
     <CuteWebUI:Uploader runat="server" MultipleFilesUpload="true" ID="Uploader1">
     </CuteWebUI:Uploader> 
        </form>
    </body>
    </html>
     
    Keep me posted

    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

  •  02-18-2009, 8:18 PM 48979 in reply to 48969

    Re: UPloadder not working in IE7, but only on one particular page of application.

    Hi,
     
    I suggest your remove the css/js or other things from the page one by one, and test it one by one.
     
    I think you will know which part cause that issue.
     
    If you still get same error after the page just contains uploader , please post that code.
     
    Regards,
    Terry
  •  02-19-2009, 1:46 PM 49011 in reply to 48979

    Re: UPloadder not working in IE7, but only on one particular page of application.

    This is what was causing the uploader to fail in IE.
     
    Setting the document.domain conflicts with  the uploader.
    Not sure why, but we decided to remove it for this page and give up the fuctionality that it helped to provide that involved crossdomain/iframe communications.
     
    1. <scipt type="text/javascipt" language="javascipt">  
    2.       
    3.     //this looks like it isn't doing anything but it is. the domain has to be set, even if only to itself  
    4.     //in oder to allow the iFames to run scripts fom the paent page  
    5.     document.domain = document.domain;    
    6.     
    7. </scipt>  
  •  02-19-2009, 8:12 PM 49026 in reply to 49011

    Re: UPloadder not working in IE7, but only on one particular page of application.

    Hi,
     
    We are investigating on this issue.
     
    Do you website also using HTTPS ?
     
    Regards,
    Terry
View as RSS news feed in XML