I am trying to use the ASP:Menu control. It is rather simple. I want it Horizontal. Each of those first level items will have Sub items. I can get it Horizontal and when
Sounds like a problem I had with Menu, but that only occurred in IE8... IE8 handled the z-index wrong. Simple to fix luckily:
<asp:Menu ID="mnuChoices" runat="server" Orientation="Horizontal"
DataSourceID="dsSiteMap">
<DynamicMenuStyle CssClass="submenu" />
</asp:Menu>
css:
.submenu {z-index: 9999; /* IE8 FIX for asp:Menu */}
This should help:
http://weblogs.asp.net/bleroy/archive/2009/03/23/asp-menu-fix-for-ie8-problem-available.aspx
cheers