Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/02/2006, 06:53
gemma_ca
 
Fecha de Ingreso: enero-2002
Mensajes: 6
Antigüedad: 22 años, 3 meses
Puntos: 0
Hola,

Puedes hacerlo con javascript/dhtml.

Te paso un ejemplo para ver si te sirve:

<html>
<head>
<title> New Document </title>
<script>
function pintar(){
if (document.formulario.RADIO1[0].checked)
document.getElementById("pintar").style.display="b lock";
else{
document.getElementById("pintar").style.display="n one";
}
}
</script>
</head>
<body>
<table>
<form name="formulario">
<tr id="pintar" style="display:none">
<td>
<input type="text" name="CAMPO1" value="">
<input type="text" name="CAMPO2" value="">
</td>
</tr>
<tr>
<td><input type="radio" name="RADIO1" onclick="pintar()"></td>
<td><input type="radio" name="RADIO1" onclick="pintar()"></td>
</tr>
</form>
</table>
</body>
</html>