
February 11th, 2005, 08:10 PM
|
|
Registered User
|
|
Join Date: Feb 2005
Posts: 26
Time spent in forums: 9 h 31 m 20 sec
Reputation Power: 0
|
|
Time VS FormatDateTime
I've got at problem when translating TIME from the MySQL-database into
the format in ASP.
my table looks like this:
| 21 | hmm | hmm | 2005-04-08 | 4 | 07:00:00 |
i have tried this ("Tid" is the TIME column)
<%=FormatDateTime(RS("Tid"),vbShortTime)%>
and this
<%=FormatDateTime(RS("Tid"),4)%>
...But I only get "00:00" ????
The other columns are no problem, so what is wrong?
(I want the format: 07:00)
|