I've been trying everything I know to change the color of a row in an asp:repeater control. What I'm trying to do is this: Based on a value, I want to be able to set the color of a record in the repeater control. I've tried DIV tags, can't make it work. How do I go about this? Thaks
|
|
|||||||||||
|
|
|
Try something like this in the code behind
and something like this in the aspx page
|
|||
|
|
|
|
Use the <%# %> databinding syntax within the ItemTemplate to do conditional formatting:
|
||
|
|
|
|
You could solve this a lot of different ways and depending on what your repeater needs to look like or the data you are sending to it there is no best answer. Here is a hack workaround that will evaluate the data and compare it for the proper color response. In the item template of the repeater surround it by a div.
and in the code behind have a function to decide
This isn't a very good way to do it and quite wasteful. An onDataBind function would be the better way to go, just wanted to show yet another way to accomplish this task. |
||
|
|
