format and databinding
<ItemTemplate>
<asp:Label runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Value", "{0:c0}") %>'>
</asp:Label>
</ItemTemplate>
Hello, I've got this inside a datagrid.
This is a money format, but it display the currency symbol as well, does anyone how to do to remove the symbol, not the formating just the symbol?
Thanks
|