Hi,
I have a menu which is created from the database. When the users navigate through pages the current page is highlighted with the css class.
Menu is rendered with the Html.RenderAction("Menu","Home");
Because of being datadriven menu i use the new ChildActionCache attribute which is in the ASP.NET MVC 2 Futures project to cache the menu.
This is where the problem starts, because of displaying the menu from cache "highlight current page" doesn't work anymore.
How can i fix this ?
Thanks in advance