Good you can help me, I have the following menu on a master page:
<asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false" IncludeStyleBlock="false" Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/Catalogo.aspx" Text="HOME"/>
<asp:MenuItem NavigateUrl="~/Catalogo.aspx" Text="CATALOGO DE PRODUCTOS"/>
<asp:MenuItem NavigateUrl="~/listacomprados.aspx" Text="DETALLE DE COMPRA"/>
<asp:MenuItem NavigateUrl="#" Text="ACERCA DE"/>
<asp:MenuItem Text="CERRAR SESION"/>
<asp:MenuItem Text="PRUEBA" />
</Items>
I want that when selecting a item
for example "PROOF" it takes me to another page, but I want the item
"PROOF" to be kept with another color in the background. Greetings and thanks.
If you look at this same page when you select item
"Ask a question" the item
stays with another color. It is exactly what I want to do.