Telerik
Home / Community / Forums / RadControls for ASP.NET: Editor / Internet Explorer cannot open the Internet Site blah - Operation Aborted

Internet Explorer cannot open the Internet Site blah - Operation Aborted

Feed from this thread
  • Lynette Anderson avatar

    Posted on Jun 2, 2006 (permalink)

    In the PageLoad event of some of our pages that contain Rad Editors, we change which Config File we are using so that we can sometimes have a stripped down version of the editor on a given page. We noticed that we were getting an error whenever we have the ToolbarMode attribute of the editor set to either 'ShowOnFocus' or 'PageTop' instead of 'Default'.  The error is:

    "Internet Explorer cannot open the Internet site http://localhost/example.aspx Operation Aborted"

     Apparently this is a somewhat common error with IE caused by 'interacting with innerHTML and possibly using other JScript functionality', as described towards the middle of this page:

    http://channel9.msdn.com/wiki/default.aspx/Channel9.InternetExplorerProgrammingBugs

     In order to reproduce this error, you can put a Rad Editor on an .aspx page, change the Config File in PageLoad to a configuration that has the ToolbarMode to 'ShowOnFocus' or 'PageTop', then whenever there is a postback on the page, just click quickly on the Rad Editor or some other controls before they are completely finished loading and it will give you a popup dialog with the error.

    My question is just can we do anything about this besides changing the behavior of ToolbarMode back to 'Default'. It doesn't give the error in Firefox, and we like the idea of being able to use the 'ShowOnFocus' functionality for some of our editors.

    Reply

  • Telerik Admin admin's avatar

    Posted on Jun 5, 2006 (permalink)

    Hello Lynette,

    Indeed, your assumptions are correct.

    What we can suggest in this case is to hide the editor in a div with style="display:none" and to show it in the body's onload event. This will ensure that the editor is fully loaded before it is shown on the page.







    Have a nice day,
    Georgi Tunev
    the telerik team

    Reply

  • arindam_chat avatar

    Posted on Apr 16, 2007 (permalink)

    Hi

    I'm facing the same problem, but your sugession using DIV is not working, do you have any other idea?

    I'm using RAD 6.0 version.

    Thanks
    Arindam

    Reply

  • surfer Master avatar

    Posted on Apr 16, 2007 (permalink)

    The suggestion in the other forum thread did not have code sample. Did you try something similar to that?


    ....
    <body onload="ShowEditor()">

    <script language="javascript">

    function ShowEditor()
    {
        document.getElementById("editorPlaceholder").style.display = "block";
    }

    </script>

    <div id="editorPlaceholder" style="display:none">
        <rade:radeditor ID="Editor1" runat="server" ... />
    </div>
    ....

    Reply

  • arindam_chat avatar

    Posted on Apr 17, 2007 (permalink)

    Yes, I have used the same code. But its not working, is it working for you?

    Reply

  • Telerik Admin admin's avatar

    Posted on Apr 17, 2007 (permalink)

    Hi Arindam,

    Please, find attached an example with RadEditor 6.0 that I made for you. Please test it and let me know if it works as expected.

    If you still experience any problems with the solution, please provide more information about the problem and what should be the expected behavior.

    Kind regards,
    Rumen
    the telerik team

    Instantly find answers to your questions at the new telerik Support Center
    Attached files

    Reply

  • arindam_chat avatar

    Posted on Apr 30, 2007 (permalink)

    Rumen
    Its still not working.
    I want to send you some code I'm using, but not seeing any upload button in this editor, ple let me know how can I send that to you.

    Thanks
    Arindam

    Reply

  • Telerik Admin admin's avatar

    Posted on Apr 30, 2007 (permalink)

    Hi Arindam,

    The forums do not support attachments due to security reasons.

    Please, open a support ticket and attach your project through the attachment functionality.

    Best regards,
    Rumen
    the telerik team

    Instantly find answers to your questions at the new Telerik Support Center

    Reply

  • ritu avatar

    Posted on Aug 11, 2008 (permalink)

    i have the same problem but it's a content page n doesn't have body tags neither can i add them..
     can u plz. help me how to overcome this error in IE

    Reply

  • Telerik Admin admin's avatar

    Posted on Aug 13, 2008 (permalink)

    Hi Ritu,

    You can attach the ShowEditor to the OnClientLoad event property of RadEditor:

        <script type="text/javascript">
        function ShowEditor()
        {
            window.setTimeout(function ()
            {
                document.getElementById("editorPlaceholder").style.display = "block";
            }, 1000);
        }
        </script>

        <div id="editorPlaceholder" style="display:none">
            <rade:radeditor ID="Editor1" OnClientLoad="OnClientLoad"  runat="server" ></rade:radeditor>
        </div>

    Best regards,
    Rumen
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

    Reply

  • ritu avatar

    Posted on Aug 15, 2008 (permalink)

    hi thanx for replying but this doesn' solve my problem : am posting my page code here..plz. . help itz urgent

    my page is as follows :-

    //update: the posted code in the message was removed per user request

    Reply

  • Telerik Admin admin's avatar

    Posted on Aug 18, 2008 (permalink)

    Hi Ritu,

    Could you please, open a support ticket and send a fully working project along with steps and screenshots how to reproduce the problem on our side? Once we are able to reproduce it we will do our best to help.


    Best regards,
    Rumen
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

    Reply

  • ritu avatar

    Posted on Aug 18, 2008 (permalink)

    i can't post the full code as itz of the live website due to security reasons...
     was is not possible to recreate the problem...

     is it possible to hide the code from public???!!??

    thanx

    Reply

  • Telerik Admin admin's avatar

    Posted on Aug 20, 2008 (permalink)

    Hi Ritu,

    I deleted the posted code in your first message. Please, note that without a sample runnable project and steps to reproduce the problem we will be not able to provide a solution. You can open a support ticket from your Client.net account, isolate the problem is a small project and send it to us using the attachment functionality.

    Once we replicate the issue on our side, we will see what is causing it and do our best to provide a workaround or a solution.

    Best regards,
    Rumen
    the Telerik team

    Check out Telerik Trainer, the state of the art learning tool for Telerik products.

    Reply

  • pukhraj avatar

    Posted on Dec 24, 2008 (permalink)

    Hi Ritu,

    Please go through following link and you will get it exactly why it is going in this way:

    http://weblogs.asp.net/infinitiesloop/archive/2006/11/02/Dealing-with-IE-_2600_quot_3B00_Operation-Aborted_2600_quot_3B002E00_-Or_2C00_-how-to-Crash-IE.aspx

    Please let me know on my email address (pukhraj.prajapat@gmail.com) if it has helped you. Because I just saw your problem during a google search and just to answer you I have registered.

    Have a good feel.

    Pukhraj

    Reply

Powered by Sitefinity ASP.NET CMS

Contact Us | Site Feedback | Terms of Use | Privacy Policy
Copyright © 2002-2009 Telerik. All rights reserved.