<IDIOMA DE ESCRITURA="JavaScript">
var miFecha = nueva Fecha();
myDate.getYear(); //Obtiene el año actual (2 dígitos)
myDate.getFullYear(); //Obtener el año completo (4 dígitos, 1970-????)
myDate.getMonth(); //Obtiene el mes actual (0-11, 0 representa enero)
myDate.getDate(); //Obtener el día actual (1-31)
myDate.getDay(); //Obtiene la semana actual X (0-6, 0 representa el domingo)
myDate.getTime(); //Obtiene la hora actual (el número de milisegundos desde 1970.1.1)
myDate.getHours(); //Obtener las horas actuales (0-23)
myDate.getMinutes(); //Obtiene los minutos actuales (0-59)
myDate.getSeconds(); //Obtiene los segundos actuales (0-59)
myDate.getMillisegundos(); //Obtiene el número actual de milisegundos (0-999)
myDate.toLocaleDateString(); //Obtener la fecha actual
var mytime=myDate.toLocaleTimeString(); //Obtener la hora actual
myDate.toLocaleString( ); //Obtener fecha y hora
si (mytime<"23:30:00")
{
alerta(mihora);
}
</SCRIPT>
2.
<%
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
java.util.Date currentTime = new java.util.Date();//Obtener el sistema actual time
String str_date1 = formatter.format(currentTime); //Formatear fecha y hora
String str_date2 = currentTime.toString(); //Convierte la fecha y la hora del tipo de fecha en forma de cadena
%>