28/07/2008, 01:07
|
| | Fecha de Ingreso: junio-2008
Mensajes: 168
Antigüedad: 16 años, 6 meses Puntos: 0 | |
Respuesta: TextField El codigo q tengo es este por si no se entiende:
<%
if(n.compareTo("3")==0){//3 columnas
%>
<table width="454" border="4" align="center" bordercolor="#0000FF" bgcolor="#FFFFFF">
<tr>
<td width="144"><div align="center" class="Estilo3">A</div></td>
<td width="144"><div align="center" class="Estilo3">B</div></td>
<td width="144"><div align="center" class="Estilo3">D</div></td>
</tr>
<tr>
<%
int cont=1;
while(cont<=muestra){%>
<td ><input type="text" name="textfield" onChange="validarSiNumero(this.value);"></td>
<td><input type="text" name="textfield2" onChange="validarSiNumero(this.value);"></td>
<td><input type="text" name="textfield3" onChange="validarSiNumero(this.value);"></td>
</tr>
<%
cont++;
}%>
</table>
<%
}
else{//dos columnas solo
%>
<table width="304" border="4" align="center" bordercolor="#0000FF" bgcolor="#FFFFFF">
<tr>
<td width="144"><div align="center" class="Estilo1 Estilo2">A</div></td>
<td width="144"><div align="center" class="Estilo3">B</div></td>
</tr>
<tr>
<%
int cont=1;
while(cont<=muestra){%>
<td><input type="text" name="textfield" onChange="validarSiNumero(this.value);"></td>
<td><input type="text" name="textfield2" onChange="validarSiNumero(this.value);"></td>
</tr>
<%
cont++;
}
%>
</table>
<%
}
%>
y quiero saber si siempre que crea un nuevo textfield lo llama iguo o q?lo q quiero es saber los nombres de los textfield o nose para recuperar esa informacion de los texfield deberia de hacer un bucle no?Alguien me puede ayudar porfa!!!Gracias |