Hi, in .Net 4 i'm using a menu apapter like so:
<asp:SiteMapDataSource ID="mainNav" runat="server" ShowStartingNode="false" />
<asp:Menu DataSourceID="mainNav" runat="server" MaximumDynamicDisplayLevels="0" />
But it's outputting a flyout type menu - all the top level links are showing and have arrows next to them. Then when you rollover these the next level is shown.
How do i get rid of this and get back to having just a un-ordered list being output?
As an aside why on earth do Microsoft think things like this are a good idea? So we've gone from .NET 3.5 where navigation was output in table, making it necessary to use adapters to get an normal list and now we've got this.