G
George Ter-Saakov
Hi. I am trying to show the grid of prices.
But if there is no price I want to show "NA". How can I do that?
Here is the code I am using to display the grid.
<asp:Repeater id=Repeater1 runat="server">
<ItemTemplate>
<tr>
<td width="30%" align="center" nowrap class="btext"><%# ((clsModifier)Container.DataItem).Price.ToString("$#,##0.00")%></td>
</tr>
</ItemTemplate>
</asp:Repeater>
Thanks.
George.
But if there is no price I want to show "NA". How can I do that?
Here is the code I am using to display the grid.
<asp:Repeater id=Repeater1 runat="server">
<ItemTemplate>
<tr>
<td width="30%" align="center" nowrap class="btext"><%# ((clsModifier)Container.DataItem).Price.ToString("$#,##0.00")%></td>
</tr>
</ItemTemplate>
</asp:Repeater>
Thanks.
George.