Category Archives: asp.net
asp:Menu in IE8
Posted by on September 7, 2010
In IE8, i was not be able to see the dynamic menu items when hovering over the menu created with <asp:menu>. after googling, we found solution to this problem. add the css class .adjustedZIndex { z-index: 1; } and refer to the above cssclass in <DynamicMenuStyle> of <asp:Menu> like below. <asp:Menu ID=”Menu1″ runat=”server”> <DynamicMenuStyle CssClass=”adjustedZIndex” /> </asp:Menu> [...]