I have an asp.net menu:
<asp:Menu ID="mnuMain" runat="server"
Orientation="Horizontal"
StaticDisplayLevels="1"
StaticHoverStyle-BackColor="White"
StaticSelectedStyle-BackColor="White">
<Items>
<asp:MenuItem Text="Home" Target="display" NavigateUrl="http://www.google.com"></asp:MenuItem>
<asp:MenuItem Text="Test" Target="display" NavigateUrl="http://www.google.com"></asp:MenuItem>
</Items>
</asp:Menu>
When I hover over a menu item I get a white background.
When I click on a menu item my iframe navigates to the selected url but the selected style is lost on the menu item. The selected menu item should retain a white background.
How can I have the selected menu items retain a white background?