Conseguimos eliminar los segundos y mostrar Pm o Am.
CODIGO
<% 'Codigo ofrecido por Tutores.org %>
La hora sin Segundos:
<%
DT = time()
Length =LEN(DT)
TheTime = LEFT(DT, Length - 6)
AMPM = RIGHT(DT, 2)
DT = TheTime + AMPM
Response.Write DT
%>
<br>
La hora normal: <%=time()%>
ENLACE AL CODIGO
Si quieres enlazar desde tu pagina a este codigo
<!-- Inicio enlace Tutores.org -->
<a title="Tutores.org - Mostrar la hora sin los segundos" href="http://www.tutores.org/codigo/618/" target="_blank">Mostrar la hora sin los segundos</a>
<!-- Final enlace Tutores.org -->