vote up 0 vote down star

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?

flag

5 Answers

vote up 2 vote down check

soon as you apply the runat="server to the tag in asp.net it receives a new mangled id" ct100****navleft" , So you could still select the tag by id but you would have to go into the source code after rendered to get the actual id name, so it would be much easier to select the tag by its class name.

link|flag
vote up 0 vote down

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:

var navleftDiv = $("#<%= navleft.ClientID %>");
navleft.css("color", "red");

Alternate options include using class instead of id, or switching to ASP.NET MVC.

link|flag
Unfortunately i'm not using jQuery, and to invoke the framework for such a minor thing seems unreasonable. – Tesseract Oct 28 at 20:18
vote up -1 vote down

You should be able to just add the the runat like this:

<div id='navLeft' runat='server'></div>

However, depending on what you are doing, you might want to look at the ASP Panel Control

http://www.w3schools.com/ASPNET/control%5Fpanel.asp

link|flag
vote up 0 vote down

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:

public abstract class BetterHTMLControl : WebControl {
    private readonly HtmlTextWriterTag _tag;
    public BetterHTMLControl(HtmlTextWriterTag tag) {
        _tag = tag;
    }

    /**
     * ASP.NET code uses the ID as the control reference variable name. It then changes
     * the name to a generated (and ugly) field when rendering the control.
     */
    public override String ID {
        get {
            /*
             * In the end, there can be only one "id" attribute for the element. 
             * ID is set by ASP.NET and may possibly be set in the code afterwards. 
             * HtmlID is typically set in the ASP.NET code, and may be set before or 
             * after ID is set.
             * 
             * If HtmlID is explicitly set, then we want its value to be used for the 
             * rendered "id" attribute and all other callers of "ID". Thus, check HtmlID 
             * for null; if it's not null, return it instead.
             */
            String statedID;
            if (_htmlID == null) {
                statedID = base.ID;
            }
            else {
                statedID = HtmlID;
            }
            return statedID;
        }
        set {
            base.ID = value;
        }
    }

    /**
     * Helper property for within ASP.NET code (where ID is reserved for the reference 
     * name). If HtmlID is set, it takes precedence over the regular ID. The ID 
     * property is then used as the "id" attribute for the rendered element.
     */
    private String _htmlID;
    public String HtmlID {
        get {
            return _htmlID;
        }
        set {
            _htmlID = value;
        }
    }

    private bool _suppressID;
    public Boolean SuppressID {
        get {
            return _suppressID;
        }
        set {
            _suppressID = value;
        }
    }

    private String _innerText;
    public String InnerText {
        get {
            return _innerText;
        }
        set {
            _innerText = value;
        }
    }

    protected override void Render(HtmlTextWriter writer) {
        if (Visible) {
            if (!String.IsNullOrEmpty(ID) && !SuppressID) {
                Attributes["id"] = ID;
            }
            foreach (String attributeName in Attributes.Keys) {
                String value = Attributes[attributeName];
                writer.AddAttribute(attributeName, value);
            }
            if (!String.IsNullOrEmpty(CssClass)) {
                writer.AddAttribute("class", CssClass);
            }
            writer.RenderBeginTag(_tag);
            if (InnerText != null) {
                writer.WriteEncodedText(InnerText);
            }
            else {
                RenderContents(writer);
            }
            writer.RenderEndTag();
        }
    }
}

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:

<%@ Register TagPrefix="myhtml" Assembly="MyAssembly" Namespace="MyNamespace.MyHTML" %>
<myhtml:Div runat="server" ID="_variableName" HtmlID="html_id_value" />

This would result in:

<div id="html_id_value"></div>
link|flag
1  
asp.net 4.0 will allow us to directly specify the ClientID without mangling, or to control the mangling so the ids become useful - if tesseract can just wait 6 months or so, his problem will be solved... – Ray Oct 28 at 20:26
You should post this as an answer; it's good info – Craig Walker Oct 29 at 1:35
vote up -1 vote down

I think this but I'm not sure

 <div runat=server cssclass="navleft">
 </div>

or

 <div runat=server class="navleft">
 </div>
link|flag
That's the class attribute, not the ID attribute. – Craig Walker Oct 28 at 19:48

Your Answer

Get an OpenID
or

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