Posted on: 12/9/2014 3:13:03 PM | Views : 592

Hi all! Please tell me - in gridview display price of goods need to be displayed with blanks, for example, no 1000000, but so 1 000 000 how to do it? That's how the code looks column:
...
<asp:TemplateField HeaderStyle-ForeColor="Gray" HeaderText="Price"><ItemTemplate><asp:Label ID="Label93" runat="server" Text='<%# Bind("Price") %>'></asp:Label></ItemTemplate> <EditItemTemplate> <asp:TextBox ID="TextBox5" runat="server" Text='<%# Eval("Price") %>'> </asp:TextBox> </EditItemTemplate> <HeaderStyle ForeColor="White" HorizontalAlign="Center" CssClass="gridst" /> <ItemStyle CssClass="gwbrd& ...

Go to the complete details ...