Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/03/2002, 09:13
bet
 
Fecha de Ingreso: febrero-2001
Mensajes: 292
Antigüedad: 24 años
Puntos: 0
Re: Llenado Automatico

Algo así es lo que estás necesitando?

Código:
<html>
<head>
<title> New Document </title>
<script language="JavaScript">
<!--
function llenar(){
	document.forms[0].iden.value = document.forms[0].rut.value + document.forms[0].suc.value;

}
//-->
</script>
</head>

<body bgcolor="#FFFFFF">

<form method=post action="">
<input type="text" name="rut" onBlur="llenar();">
<input type="text" name="suc" onBlur="llenar();">
<input type="text" name="iden" readonly>
</form>

</body>
</html>
<hr noshade size=1><img src="http://www.gograph.com/Images-8712/ClipArt/cat03.gif" height="50" border=0 align="absmiddle"> <font size="2" face="verdana" color="#000000">bet[/CODE]