i try to highlight record ...like when any one wants to upload documet then in repeater i try to highlight this new record and when user click on this document then this becomes as normal position means not highlight
<tr style='<%#if(DataBinder.Eval(Container.DataItem, "ViewedType")== 1)
{ %> background-color: yellow; <% }
else { <% background-color: white;
<%} %>'>
but it shows me error
CS1519: Invalid token 'else' in class, struct, or interface member declaration
Source Error:
Line 128: style='<%#if(DataBinder.Eval(Container.DataItem, "ViewedType")== 1)
Line 129: { %> background-color: yellow; <% }
Line 130: else { <% background-color: white;
Line 131: <%} %>'>
Line 132: <%--<td>
how to solve?