Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/06/2008, 06:22
Avatar de hwongu
hwongu
 
Fecha de Ingreso: junio-2008
Ubicación: Trujillo
Mensajes: 93
Antigüedad: 16 años, 6 meses
Puntos: 5
De acuerdo Respuesta: habilitar radioButon recibiendo parametros

Depende del value que te devuelva el radionbutton, si pones q el radionbutton de hombre de devuelva 1 y de la mujer te devuelva 0 harias los siguiente

<%
int s=Integer.parseInt(sexo);
if(s==1){
%>
<input name="sexo" type="radio" value="1" checked="checked" />
<input name="sexo" type="radio" value="0" />
<%}else{%>
<input name="sexo" type="radio" value="1" />
<input name="sexo" type="radio" value="0" checked="checked" />
<%}%>