vote up 1 vote down star

Hi,

I have an ASP.NET / C# application in which the Master Page contain the main menu of my application and several content pages that depend of this master page.

I would like to highlight the menu link of my master page corresponding to the current content page displayed.

To do that, I already have a CSS class dedicated to this (called "selected")

Thus, I was trying to access the Master Page link I want to highlight from the content page by using its ID and do something like that (in the content page) :

HtmlLink currentMenu = (HtmlLink) Master.FindControl("idOfTheLinkToHighlight");
currentMenu.Attributes.Add("class", "selected");

But I get the following exception :

Unable to cast object of type 'System.Web.UI.HtmlControls.HtmlGenericControl' to type 'System.Web.UI.HtmlControls.HtmlLink

Can anybody help me on this ? Thanks

flag

Can we see how you declare your link in the master page? – Gregoire Aug 19 at 18:53
It looks like your control declaration is not of type HtmlLink to which you're trying to cast, control declaration code would help as Gregoire already noted. – Pawel Krakowiak Aug 19 at 18:56

1 Answer

vote up 0 vote down check

By the way, try

(HtmlGenericControl)currentMenu = (HtmlGenericControl) Master.FindControl("idOfTheLinkToHighlight");
currentMenu.Attributes.Add("class", "selected");

it should work because HtmlGenericControl has also attributes

link|flag
Yes exactly ! Just the time for e to refresh this page and it is what I tried. It works fine (and my problem was just a mistake that came to my mind thanks to your first answer ;) – Clem Aug 19 at 19:07

Your Answer

Get an OpenID
or

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