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., 7:04:16 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
7:04 PM
 
asp  time  12 hour time  no seconds