<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Master Pages, Themes and Navigation Controls</title><link>http://forums.asp.net/139.aspx</link><description>Discussions of MasterPages, Themes, and other page-related features. &lt;A href="http://aspadvice.com/SignUp/list.aspx?l=164&amp;amp;c=30" target=_blank&gt;Email List&lt;/A&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/3319915.aspx</link><pubDate>Wed, 29 Jul 2009 20:35:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3319915</guid><dc:creator>clduvall</dc:creator><author>clduvall</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3319915.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=3319915</wfw:commentRss><description>&lt;p&gt;Instead of displaying/hiding the menu, I placed a semi-transparent overlay div over the menu header then removed it in a similar fashion. &amp;nbsp; This got rid of some of the menu flicker.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;On body load :&lt;/p&gt;&lt;p&gt;var do = $get(&amp;#39;documentOverlay&amp;#39;);&lt;br /&gt;if( do ) do.style.display = &amp;#39;none&amp;#39;;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The overlay was styled as position: absolute.&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/2346481.aspx</link><pubDate>Thu, 08 May 2008 18:32:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2346481</guid><dc:creator>jaireth</dc:creator><author>jaireth</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2346481.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=2346481</wfw:commentRss><description>&lt;p&gt;This error is caused by executing javascript that in anyway changes an element on the page that has not completed loading. The greater issue is, that in this case that element/javascript is in the autogenerated code of the .NET menu. What I have done to fix this issue is to enclose my menu in a div. Give that div an ID and set it display:none. Then in your onload code call a function to set the display of the menu to inline or block (whatever your needs are).&lt;/p&gt;&lt;p&gt;&amp;nbsp;For example:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;body onload=&amp;quot;f_onload();&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&amp;quot;divMenu1&amp;quot; style=&amp;quot;display: none;&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:Menu ID=&amp;quot;Menu1&amp;quot; runat=&amp;quot;server&amp;quot; Orientation=&amp;quot;Horizontal&amp;quot;&amp;gt;&amp;lt;/asp:Menu&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; defer=&amp;quot;defer&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function f_onload() {&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var divMenu1=document.getElementById(&amp;quot;divMenu1&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var divMenu2=document.getElementById(&amp;quot;divMenu2&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; divMenu1.style.display=&amp;#39;inline&amp;#39;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; divMenu2.style.display=&amp;#39;inline&amp;#39;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/script&amp;gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;This way, when your user goes to the site, the menu isn&amp;#39;t displayed until after the page is finished loading. It is not displayed for only a moment, but that&amp;#39;s the moment in which this error occurs. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1979251.aspx</link><pubDate>Mon, 29 Oct 2007 15:07:37 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1979251</guid><dc:creator>ca4nul</dc:creator><author>ca4nul</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1979251.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1979251</wfw:commentRss><description>&lt;p&gt;Hi all&lt;/p&gt;
&lt;p&gt;any body find solution of this error. please let me know.&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1782190.aspx</link><pubDate>Mon, 02 Jul 2007 06:47:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1782190</guid><dc:creator>sivamyneni</dc:creator><author>sivamyneni</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1782190.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1782190</wfw:commentRss><description>&lt;p&gt;HI,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I am also facing the same probelm. when i click on some hyperlink of my page sometimes its disaplyingthat internet explorer cannot open the internet site. some times it works fine. Please help me&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;SivaMyneni&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1185590.aspx</link><pubDate>Wed, 01 Feb 2006 13:56:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1185590</guid><dc:creator>hensleyrob</dc:creator><author>hensleyrob</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1185590.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1185590</wfw:commentRss><description>&lt;p&gt;Sorry to post agin so quickly, I was just looking through the source html that is generated for the page I'm getting the error on and noticed the code for my two&amp;nbsp;menu controls is at the VERY bottom of the source. When I say code I mean the JavaScript that's used for the menu. It seems to me like this chunk of code should be generated before the menu control on the page rather then at the VERY end. Is there anyway to have this control generate it's code first (some page event, prerender, anything?) Or a way to tell ASP to generate the javascript at the top of the code rather then the bottom. Again, sorry to post again already, just trying to figure this out. Thanks!&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1185542.aspx</link><pubDate>Wed, 01 Feb 2006 13:05:31 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1185542</guid><dc:creator>hensleyrob</dc:creator><author>hensleyrob</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1185542.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1185542</wfw:commentRss><description>&lt;p&gt;Let me rephrase that. Mine may be in a master page depending on how you look at it. Well, the more Ii think about it then I guess mine too is in a master page (it's in a user control which is on the master page). Is this what's causing the problem, havnig the menu in the master page? Is there a fix for this that we know of yet or is it something we just have to live with? Thanks again and sorry for the confusion.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1184894.aspx</link><pubDate>Tue, 31 Jan 2006 20:15:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1184894</guid><dc:creator>hensleyrob</dc:creator><author>hensleyrob</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1184894.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1184894</wfw:commentRss><description>&lt;p&gt;I also have this problem although my menu isn't in a master page. It only happens when I put the mouse of the menu before the page is finished loading (which leads me to believe that's the issue, the page just isn't fully loaded yet).&lt;/p&gt;
&lt;p&gt;Is there a way to not let the menu show until the page is fully loaded, or any other way around this?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1159962.aspx</link><pubDate>Thu, 05 Jan 2006 16:32:12 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1159962</guid><dc:creator>willc</dc:creator><author>willc</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1159962.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1159962</wfw:commentRss><description>&lt;p&gt;Danny&lt;/p&gt;
&lt;p&gt;Yes, it is the Asp.net 2 Menu control in a MasterPage. I will post a sample.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>Re: Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1159252.aspx</link><pubDate>Wed, 04 Jan 2006 23:16:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1159252</guid><dc:creator>dannychen</dc:creator><author>dannychen</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1159252.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1159252</wfw:commentRss><description>Are you using the ASP.NET 2.0 Menu control or some other menu?&amp;nbsp; Can you paste a sample page with some instructions to reproduce your issue?&lt;br /&gt;--&lt;br /&gt;Danny</description></item><item><title>Menu Error - Internet Explorer cannot open the Internet site, Operation aborted</title><link>http://forums.asp.net/thread/1158791.aspx</link><pubDate>Wed, 04 Jan 2006 16:08:12 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1158791</guid><dc:creator>willc</dc:creator><author>willc</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1158791.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=139&amp;PostID=1158791</wfw:commentRss><description>&lt;p&gt;Occasionally (the worst kind of bug) we get the following&amp;nbsp;popup error in IE6 "Internet Explorer cannot open the Internet site, Operation aborted "&amp;nbsp;&amp;nbsp;when you click on a menu item that has a dynamic child menu and continue to hover over the menu. It is more common on a slower machine. It is very sporatic on my machine - I reproduced it&amp;nbsp; perhaps once in a 100 tries, but another developer here gets it more like 1 in 10 tries. It seems to be related to control trying to alter the Dom&amp;nbsp;&amp;nbsp;when the page has not completed loading. &lt;/p&gt;
&lt;p&gt;There used to be a similar&amp;nbsp;problem with the menu in DotNetNuke - &lt;a HREF="/641014/ShowPost.aspx"&gt;http://forums.asp.net/641014/ShowPost.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Is there any fix to this bug?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>