I am currently working with a gridview and would like to convert my total minutes field into hh:mm
This is what my code looks like now, it is taking the total minutes and giving back hh.00
</asp:TemplateField>
<asp:TemplateField HeaderText="Hours" HeaderStyle-Width="88px">
<ItemTemplate>
<%# (((PendingApprovalListData)Container.DataItem).TotalMinutes / 60.00).ToString("N2")%>
</ItemTemplate>