working with asp page and I need to change "true-false" statement on table. But I couldn't figure out how to add "string" instead of boolen data on asp page. That's asp code block, which I need to change it.
<tr data-ng-repeat=" ticket in ticketList">
<td>{{ticket.UserId}}</td>
<td>{{ticket.State}}</td>
<td>
I tried to do that
<td>{{<%# ((bool)Eval("ticket.State") != false) ? "Tested" : "NotYet" %>}}</td>
but, It doesn't work. how can I put a conditional statement into that cod block. Thanks for any advice.