Hai, actually asp:menu working in IE6 ,IE7 all browser Except IE 8
because of compatibility issue.. so
I have added this code in web.config..
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
I use the asp.net menu control as you would a normal horizontal menu
with drop downs and sub menus.
In IE8 beta 2, the sub menus just show up as white boxes ignoring any
content. The size of the white box is what it should be but does not
display anything.
It works in compatablity mode but the menus are the only thing that
isn't working so far in IE8 normal mode.