Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/03/2005, 05:17
PosDon
 
Fecha de Ingreso: octubre-2004
Mensajes: 104
Antigüedad: 20 años, 3 meses
Puntos: 0
Yo lo utilizo así por ejemplo, hay muchas maneras:

Código:
<html>
	<head>
		<script language='javascript'>
			function ponerpagina()
			{
				var agujero = document.getElementById('ifr');
				agujero.src = 'mipagina.htm';
			}
		</script>
	</head>
	<body>
		<iframe id='ifr'></iframe>
		<br>
		<input type='button' value='Cambiar' onClick='ponerpagina();'
	</body>
</html>