Tema: Undefined
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/03/2007, 07:00
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 18 años, 4 meses
Puntos: 126
Re: Undefined

El campo maticulado lo podrías crear así

Código:
Sí <input type="radio" name="maticulado" value="1">&nbsp;&nbsp;
&nbsp;No <input type="radio" name="matriculado" value="0" checked>
Otra forma sería

Código:
If Request.form("matriculado") = "" then
matriculado = 0
Else
matriculado = 1
End If
Suerte