I have an element, like this:
<div id="navleft">
</div>
I want to make this element runat=server but still be able to specify a css id selector. Is this possible?
|
|
|
|
|
|
|
soon as you apply the runat="server to the tag in asp.net it receives a new mangled id" |
||
|
|
|
|
No, it's not possible -- the id will get monkeyed with by ASP.NET (because of containers such as Master Pages) and so cannot be relied on. What you can do, though, is obtain the ID that's been assigned to it (the property is ClientID), and then use javascript (or, better yet, jQuery) to assign CSS to it. Like so:
Alternate options include using class instead of id, or switching to ASP.NET MVC. |
|||
|
|
|
You should be able to just add the the runat like this:
However, depending on what you are doing, you might want to look at the ASP Panel Control |
||
|
|
|
|
I banged my head on this for some time. Eventually I gave up and made my own webform control that allowed me to set the ID as I wanted. Here's a copy/paste of my code:
I then subclassed this for each tag. It's not the most elegant solution (it's yet another library of HTML-generating classes) but it does give me the control I want. When I want to use a tag, I'll write the following:
This would result in:
|
||||||
|
|
|
I think this but I'm not sure
or
|
||
|