Take a look at this; right now, it's just wishful thinking.
Default.aspx
<ul id="menuemenue" runat="server">
<li><a href="www.google.com">google</a></li>
<li><a href="www.yahooo.com">yahooo</a></li>
<li><a href="www.stackoverflow.com">stackoverflow</a></li>
</ul>
Default.aspx.cs
foreach (var item in menu.Elements("a"))
{
if (item.Attribute("href") == currentPageUrl)
{
item.addClass("selected");
}
}
I know I can make this happen by writing my own little HTML engine (or whatever you wanna call it) and manipulate menu.innerHtml. But do i have an alternative?
Update
I know it can be done with javascript/jquery, and in a 100 of different ways. But imagine if you could do it like in my example, how clean your c# code would be.
runat="server"to all the list items? – Christian Hayter Feb 21 at 15:27