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.

link|improve this question

56% accept rate
are you just wanting to apply CSS to it ? – Micah Armantrout Feb 21 at 15:12
Well in this example i want to give it a class yes. But it's more about the concept of manipulating HTML elements with no runat="server" attribute. – BjarkeCK Feb 21 at 15:15
Do you have to do it server side ? – Micah Armantrout Feb 21 at 15:16
6  
I have to ask, why can't you just add runat="server" to all the list items? – Christian Hayter Feb 21 at 15:27
1  
Sounds like you want to be giving ASP.NET MVC a look. – Cognize Feb 21 at 17:43
show 10 more comments
feedback

1 Answer

Well you could just apply server-tags <%=[...]%> which would look something like this:

<li><a href="www.google.com" class='<%=1==1?"selected":""%>'>google</a></li>

Other than that I'm afraid you might be out of luck if you want to do it via codebehind only.

link|improve this answer
Okay, i guess i need to write the necessary code myselvf then :/ Think anyone would be interrested in it when i'm done? or am i a freak wanting to do it that way? – BjarkeCK Feb 21 at 15:37
feedback

Your Answer

 
or
required, but never shown

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