17/09/2003, 01:00
|
| | | Fecha de Ingreso: mayo-2002 Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años, 8 meses Puntos: 7 | |
en el head...
<script>
function FXValidar() {
ii=1;
if (ii>0) {
if (document.frm_Ingreso.txt_Signatura_1.value=="") {
alert("No ha llenado el campo 1");
ii=0;
}
}
if (ii>0) {
if (document.frm_Ingreso.txt_Signatura_2.value=="") {
alert("No ha llenado el campo 2");
ii=0;
}
}
.... //etcetera
if (ii>0) {
return true;
} else {
return false;
}
}
</script>
en el body...
<form method="post" name="frm_Ingreso" action="otra.php" onSubmit='return FXValidar();'>
__________________ No tengo firma ahora... :( |