1
I am implementing a menu in the header of my page. As the user clicks on the buttons in this menu, the page is rendered just below. I would like to highlight in the menu the button referring to the current user page.
I’m calling it that:
<li>
<a href="@Url.Action("Index", new { controller = "Informativo" })" title="Informativo"> Inf. </a>
</li>
Have you ever tried to do anything? Would you have some code to direct you?
– Erlon Charles
I call them this way: <li> <a href="@Url.Action("Index", new { controller = "Informative" })" title="Informative"> Inf. </a> </li>
– cumpadi