Ver Mensaje Individual
  #12 (permalink)  
Antiguo 02/01/2003, 08:00
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 22 años, 8 meses
Puntos: 381
A ver si te entendí.

Tienes un formulario y dos posibles acciones a realizar dependiendo del radiobuton que se escoja.
Además tienes 2 iframes, y el resultado de enviar el form se mostrará en uno u otro iframe dependiendo también de lo que se haya escogido en los mismos radiobuttons.

Prueba esto a ver si se acerca a lo que quieres.

La prueba la hago mandando a yahoo usa o a yahoo españa (el de usa da error porque tratamos de enviarle un formulario, ni caso, lo que cuenta es ver que el tema responde)<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="">
<input type="radio" name="pepe" onClick="this.form.action='http://www.yahoo.es/';this.form.target='iframeUno'">
<input type="radio" name="pepe" onClick="this.form.action='http://www.yahoo.com/';this.form.target='iframeDos'">
<input type="submit" name="Submit" value="Enviar">
</form>
<iframe name="iframeUno" width="300" height="200"></iframe><iframe name="iframeDos" width="300" height="200"></iframe>
</body>
</html>

dime si es algo así