Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

This post is a bit late but may be beneficial for future inquiries.

The asp:Menu is updated upon postback so if you're using asp:UpdatePanel ensure it's enclosed in one with the asp:Menu id being the AsyncPostBackTrigger of the asp:UpdatePanel.

Also if you're using css forget the StaticSelectedStyle attribute of the asp:Menu.

A "selected" class is added to the selected link on postback.

Simply use it in a css (a.selected {}) to give the effect of a:active {}.

share|improve this answer

set class to menuitem for instance :

<style> .active{background-color:white} </style><asp:MenuItem Text="Home" cssclass="active" Target="display" NavigateUrl="http://www.google.com"></asp:MenuItem>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.