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., 4:30:58 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

4:30 AM

asp time 12 hour time no seconds


Back To Top
© 1998 - 2024 psacake.com
Version 7.21 | Advertise on this site