
06/09/2007, 14:14
|
| | Fecha de Ingreso: septiembre-2007
Mensajes: 27
Antigüedad: 17 años, 8 meses Puntos: 0 | |
Radio Button Alguien podria ayudarme con esta duda
<%indice = 0%>
<table class="table" width="550">
<%for j = 0 to (temp.getCount()/detalleGeneral.getCount())-1%>
<tr align=center class="normal">
<td width="30"><font class="normal"><INPUT TYPE="radio" class="radio" NAME="radButton<%=trim(j)%>" value="<%=j%>" onClick=""></font></td>
<%for i = 0 to detalleGeneral.getCount()-1%>
<%set pantallanew = temp.getMantenedorGenerico(indice)%>
<td width="100"> <%response.write(pantallanew.dato)%></td>
<%indice = indice + 1%>
<%next%>
</tr>
<%next%>
</table>
Este codigo me crea una tabla con datos previamente ingresados en un formulario, pero necesito rescatar el valor del Radio Button en otra pagina como puedo hacerlo? |