![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
08/09/2004, 14:44
|
| | Fecha de Ingreso: junio-2004
Mensajes: 92
Antigüedad: 20 años, 7 meses Puntos: 0 | |
Para que se actualicen cada vez que cargas necesitaras JavaScript o preprocesamiento (asp, php, etc.)
En ASP.net, si asumimos que tienes 3 imagenes para ir cambiando, podria ser algo asi:
<img src='<%
dim seg as integer = now().seconds
if seg <= 20 then
response.write("img1")
elseif seg <= 40 then
response.write("img2")
elseif seg <= 60 then
response.write("img3")
end if
%>.jpg'>
Última edición por CreaTuSitio.com; 08/09/2004 a las 14:46 |