Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/11/2002, 13:18
chivi
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 889
Antigüedad: 23 años, 2 meses
Puntos: 4
Acá te hice ésto:

<html>
<head>
<script>
function Formulario(form){
form.mensaje.value = 'Soy ' +form.soy.value + ' y estoy ' + form.estoy.value;
}
</script>
</head>
<body>
<form name=form>
¿Quien eres? <input type=text name="soy"><br>
¿Como estás? <input type=text name="estoy"><br>
<textarea name=mensaje></textarea><br>
<input type=button value=Mandar onclick="Formulario(this.form)">
</form>
</body>
</html>

¿Es parecido a lo que buscas?