views:

43

answers:

1

Hi all,

I'm trying to format the following:

<%# Bind("TimeOfDay","{0:HH:mm:ss}") %>


<%# Eval("TimeOfDay","{0:HH:mm:ss}") %>

<%# Bind("TimeOfDay","{0:HH:mm:ss tt}") %>

But using either of those returns time as following:

08:33:08.1430000

How can I only get the 08:33:08 part?

Thanks,
EtonB.

A: 

((DateTime)Eval("TimeOfDay")).ToString("HH:mm:ss") ?

GôTô