vote up 2 vote down star

Inside a repeater's ItemTemplate there is a:

<tr class="class1">

</tr>

I want this class to be changed to "class2" according to a valu that is bounded to this repeater, Eval("Locked").

If locked==true class="class1" else class="class2", how can I do it in simple way?
(in code behind it's to complex)

flag

75% accept rate

1 Answer

vote up 5 vote down check

Really simple, just put a serverside tag:

<asp:Repeater ID="yourRepeater" runat="server">
    <ItemTemplate>
        ....
        <tr class='<%# Convert.ToBoolean(Eval("Locked")) ? "class1" : "class2" %>'>
            ....
        </tr>
        ....
    </ItemTemplate>
</asp:Repeater>

UPDATE: Thanks Kobi, i've missed Convert.ToBoolean() :)

link|flag
Does that compile? Shouldn't that be "true".Equals(...)? IIRC, eval returns an object. – Kobi Oct 19 at 9:04
You're right, I've missed the convertion. – tanathos Oct 19 at 9:07

Your Answer

Get an OpenID
or

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