I have some tabular data, when the label has some specific value I need to make it show off.Trying to do by styling the TD.My C# sets the value for \[code\]Label1.text\[/code\]Can you think of any other way for doing so? It's throwing ambiguity error.\[code\] <% if (Label1.Text == "1") { %> <td style="background:#ffedad; border:#e3a345; color:#cd5c0a"><asp:Label ID="Label1" runat="server" /></td> <% } else {%> <td><asp:Label ID="Label1" runat="server" /></td> <% } %>\[/code\]