![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
02/09/2005, 12:37
|
| | Fecha de Ingreso: mayo-2005
Mensajes: 217
Antigüedad: 19 años, 8 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"> </p>
</body>
</html> |