ASP.NET GridView issue with DataFormatString in a BoundField
- by David
I have a BoundField in a GridView whose datatype (in MSSQL) is time(7). The format is being displayed as:
hh:mm:ss.xxxxxx
I want to add a DataFormatString to this boundfield so that the field displays in the format:
hh:mm:ss
Here is a snippet of the .aspx file that I'm modifying:
<asp:BoundField DataField="ProcTime" HeaderText="ProcTime"
…