![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
21/04/2010, 11:30
|
| | Fecha de Ingreso: mayo-2008
Mensajes: 19
Antigüedad: 16 años, 8 meses Puntos: 0 | |
Respuesta: Comprobar checkbox y si el checkbox esta dentro de una tabla?
<table id="tabla" border="0" BORDERCOLOR="black" CELLPADDING="4">
<tr STYLE="background-color:orange;font-size:12px; text-align:center;">
<td >
</td>
<td >Nombre y Apellidos
</td>
<td >DNI
</td>
<td >Telefono
</td>
<td >Correo
</td>
<td >Poblacion
</td>
<td >Provincia
</td>
<td >Fax
</td>
<td >Observaciones
</td>
</tr>
<%
Do While NOT rs.EOF
%>
<tr STYLE="background-color:white;font-size:10pt; ">
<td ><INPUT type=checkbox name=chbox>
</td>
<td >
<%=rs("nombre")%></td>
<td >
<%=rs("dni")%></td>
<td >
<%=rs("telefono")%></td>
<td >
<%=rs("correo")%></td>
<td >
<%=rs("poblacion")%></td>
<td >
<%=rs("provincia")%></td>
<td >
<%=rs("fax")%></td>
<td >
<%=rs("observaciones")%></td>
</tr>
<%
rs.MoveNext
Loop
%>
</table>
</center>
<%
rs.Close
%> |