Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What I want to do is assign an ID to a table row with value of a ID of the column in question.

To clarify. I have a data table with fields [ID] [Name] [Description], and populate the ListView like this: (I've simplified the code here for clarity)

<asp:ListView ID="MainList" runat="server" DataKeyNames="id">
    <layouttemplate>
        <dl id="header">
            <dd class="rowHeader">Name</dd>
            <dd class="rowHeader">Description</dd>
        </dl>
        <asp:Panel runat="server" ID="itemPlaceholder">
        </asp:Panel>
    </layouttemplate>
    <itemtemplate>
        <dl class="row">
            <dd><%# Eval("name")%></dd>
            <dd><%# Eval("description")%></dd>
        </dl>
    </itemtemplate>
</asp:ListView>

Now, what I tried was to add it like this.

<dl class="row" id='<%# Eval("id")%>'> 

and of course it worked, but I need to pass it as a variable because i need to check for something with it. Like so:

<% Dim id as Integer = Eval("id") %>
<dl class="row" id='<%=id %>'>

I got this error:

Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.

And I get it why... the reason why I need this is so I can compare id with a session variable and change rows class accordingly.

Any way to go around this?

share|improve this question

1 Answer

up vote 1 down vote accepted

You should be able to do the same type of logic in your class attribute:

<dl class="row" id='<%# Eval("id")%>' class='<%= Eval("id") == Session["myValue"] ? "someCssClass" : "otherCssClass" %>'>

I think this should work.

share|improve this answer
gonna try. Thanks. – user1407758 Aug 7 '12 at 15:54
same error... I had to use different syntax since here you used C# inline if, this is VB as tagged :) – user1407758 Aug 7 '12 at 16:10
worked. thanks :) i made a mistake in setting it up :D <dl id='<%# Eval("id") %>' class='<%# IIf(Eval("id") = Session("temp"), "row selectedRow", "row") %>'> This was the exact code for vb. – user1407758 Aug 7 '12 at 16:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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