I have the following code which displays some info inside a table in ASP :
<td class="s10"><%# DataBinder.Eval(Container.DataItem, "VTarget")%></td>
<td class="s10"><%# DataBinder.Eval(Container.DataItem, "QTarget")%></td>
I want to compare the information from VTarget and QTarget and if the second is greater than the first i want to display a message.
Is there any way to do that using something like an if {...} else {...} statement?