Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/09/2005, 12:37
klyfa
 
Fecha de Ingreso: mayo-2005
Mensajes: 217
Antigüedad: 18 años, 10 meses
Puntos: 5
yo lo haria con javascript

<html>
<head>
<title>Refresco automático de página 2</title>

<script>
<!--
function autoReload()
{
var timeID = setTimeout("location.href= document.URL", 10000)

//The number is the time limit, it is using miliseconds (1/1000 of one second), so 60000 miliseconds = 60 seconds.
}

//-->
</script>


</head>

<body BGCOLOR="#ffffff" link="#CC0033" vlink="#333399" alink="#FF0000" onload="autoReload()">
<p align="center"><b>Refresco automático de página 2 </b></p>
<table WIDTH="96%" BORDER="0" CELLSPACING="5" CELLPADDING="5">
<tr>
<td WIDTH="100%">
<p align="center"><font size="2">Este script refresca la página cada 10 segundos.
</font> </td>
</tr>
</table>
<p align="center">&nbsp;</p>

</body>

</html>