J John Smith Jul 8, 2005 #1 In a DataGrid, is it possible to format the text in a BoundColumn, either before or after the databind? Thank you
In a DataGrid, is it possible to format the text in a BoundColumn, either before or after the databind? Thank you
D David Barkol Jul 8, 2005 #2 Here's an example of formatting a bound column for an interest rate field: <asp:BoundColumn DataField="InterestRate" ReadOnly="True" HeaderText="<b>Interest Rate</b>" DataFormatString="{0:##.000}%" </asp:BoundColumn> Good luck. David Barkol www.neudesic.com
Here's an example of formatting a bound column for an interest rate field: <asp:BoundColumn DataField="InterestRate" ReadOnly="True" HeaderText="<b>Interest Rate</b>" DataFormatString="{0:##.000}%" </asp:BoundColumn> Good luck. David Barkol www.neudesic.com