![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
04/03/2003, 06:31
|
![Avatar de Cain](http://static.forosdelweb.com/customavatars/avatar9591_1.gif) | | | Fecha de Ingreso: enero-2002 Ubicación: Catalunya
Mensajes: 6.459
Antigüedad: 23 años, 1 mes Puntos: 17 | |
Con HTML:
Apellidos: <INPUT type="text" name="lastname" value="garcia"><BR>
O, con JAVASCRIPT :
<script>
function envia(){
document.formulario.lastname.value = 'garcia';
document.formulario.submit();
}
</script> |