http://i44.tinypic.com/5ureav.png
Sometimes, when my pages are rendered, a horizontal menu is displayed like this. Why?
<asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal" ClientIDMode="AutoID"> <Items></Items> </asp:Menu>
This usually happens when a page loads a large amount of data, but when the data ends, the load never returns to the horizontal.
Testing with IE 7, 8, and 9 and Chrome.
I looked around the internet and found that some people say that this is a z-index, but the setup did not help.
I use the "developer tools" in IE8 to further troubleshoot and search for some javascript calls that failed. I have no idea what they mean.
<script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$MainContent$tsmgrEmployees', 'aspnetForm', ['tctl00$MainContent$uPanelEmployees',''], ['ctl00$MainContent$btnClear','','ctl00$MainContent$txtEUID','','ctl00$MainContent$txtFirstName','','ctl00$MainContent$txtLastName',''], [], 90, 'ctl00'); //]]> </script>
Error created
'Sys.WebForms.PageRequestManager' is null or not an object
<script type='text/javascript'>new Sys.WebForms.Menu({ element: 'ctl00_NavigationMenu', disappearAfter: 500, orientation: 'horizontal', tabIndex: 0, disabled: false });</script>
Error created
'Sys.Webforms.Menu' is null or not an object
I believe that the remaining errors are all cascades of these two. Do you think I should replace jscript libraries with updated ones? Perhaps this is due to the browser since I am using IE8 (not in compatibility mode).
Another odd bit of information that can help is that when I create a solution in Visual Studio 2010 on WinXP Pro in my development environment, it works fine, but when I publish it on a server (IIS 7.5, Server 2008 R2) breaks. At first, I thought it might be data lag, but the connection string on the server should be faster than the connection string in my dev environment. The server uses Localhost as the target, my dev workstation uses the server path ... so I don't think this is data lag.