<%# DataBinder.Eval(Container, "DataItem.cptUID")==selectedCpt.Value ? "TRUE" : <add font tags here> "FALSE" <closing font tag> %></span></td>
我的目标是在其中一个案例中更改文字颜色。我尝试使用不同的转义字符串,它们都被编译器标记。 谢谢。
答案 0 :(得分:0)
你可以这样做:
<%# DataBinder.Eval(Container, "DataItem.cptUID") == selectedCpt.Value
? "TRUE" : "<font color=\"red\">FALSE</font>" %></span></td>
或者这个:
<%# DataBinder.Eval(Container, "DataItem.cptUID") == selectedCpt.Value
? "TRUE" : @"<font color=""red"">FALSE</font>" %></span></td>
进一步阅读