TheConeHead
Programmer
I have a repeater where I am showing the values via:
I need to be able to check this value and if it is a certain value, then change some of the HTML - I tried:
but I get an error... how could I do this?
Code:
<%#DataBinder.Eval(Container.DataItem, "field")%>
I need to be able to check this value and if it is a certain value, then change some of the HTML - I tried:
Code:
string var = DataBinder.Eval(Container.DataItem, "field");
but I get an error... how could I do this?