Display the Time Without the Seconds
- Home
- ASP
- Display the Time Without the Seconds
The built in ASP time object returns the time in the format of HH:MM:SS AM/PM (i.e., 3:55:12 AM). Often times, you don't want to show the seconds, you just want to show HH:MM AM/PM. Now it can be done!
The Code:
<%
DT = time()
Length = LEN(DT)
TheTime = LEFT(DT, Length - 6)
AMPM = RIGHT(DT, 2)
DT = TheTime + AMPM
Response.Write DT
%>
The Result
3:55 AM
asp time 12 hour time no seconds