,
Share with your friends 

asp.net menucontrol not working in IE8

1 ratings Views 209 
Author: krish (krishna kumar)  View Profile |  View other solutions by this author

Question / Problem


asp.net menucontrol not working in IE8. It is working fine in IE7 . compatibility view it is working fine. What is the best workaround

Solution

Hi,

 The problem is due to z-index only. Just increase the z-index of the Dynamicmenu tag under asp menu

  .dmenu

{
      z-index: 1000;
    color: Black;
}

 <asp:Menu ID="Menu1" runat="server" BackColor="#B5C7DE" DataSourceID="SiteMapds"

Orientation="Horizontal" StaticDisplayLevels="2" StaticSubMenuIndent="10px" StaticEnableDefaultPopOutImage="False" StaticPopOutImageTextFormatString="" >

 <Dynamicmenu Orientation="dmenu">



Applies to

Asp.Net 2.0

Rank It

Login to rank it

Report


Advertisement