tengo un checkbox que esta dentro del while la cual posee una funcion al hacer onclick que se va aun ajax el probema es que con el primero melo muestra bien pero los demas no funka trate de varias formas pero no lo logre lo ultimo que hize se lo muestro a continuacion, espero sus comentario. Gracias
Código HTML:
<form name="form1"> <table class="txContenido"> <tr> <td>LDN</td> </tr> <% WHILE NOT PlanesLDN.EOF %> <tr> <td><input style="width:11px;" type="checkbox" name="PlanesLDN" id="PlanesLDN" value="<%=PlanesLDN.Fields("producto")%>" onclick="cargaOption(<%=c%>)"><%=PlanesLDN.Fields("producto")%></td> <input type="hidden" name="c" value="<%=c%>"> </tr> <% c = c + 1 PlanesLDN.movenext() wend %> </table> </form>
Código:
function cargaOption(c) { var TipoI[c] if (document.getElementById("PlanesLDN").checked[c] == true){ TipoI[c] = document.getElementById("PlanesLDN").value[c]; xmlHttp=GetXmlHttpObject(); xmlHttp.open("GET", "Accion.asp?TipoI="+TipoI[c], true); xmlHttp.onreadystatechange=function() { if (xmlHttp.readyState==4) { document.getElementById("show").innerHTML=xmlHttp.responseText; } } xmlHttp.send(null); }