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., 9:00:41 PM). 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
9:00 PM
 
asp  time  12 hour time  no seconds