Primero que todo muxas gracias por tu paciencia Adler....
Hice algunas modificaciones para que las filas crecieran mediante el FOR que dijimos en los mensajes anteriores dejandolo asi:
Código ASP:
Ver original<form method="post" action="">
<table width="430" height="103" border="1" align="center" bordercolor="#0000FF" id="idt_1">
<tr>
<td width="213"><p>Distribuidor: <%=response.write (""&DISTRIBUIDOR&"") %></p>
<p>Local: <%=response.write (""&LOC&"") %></p>
<p>Fecha: <%=response.write (""&ACTUAL&"") %></p></td>
<td width="130"><p>Guía de Despacho </p><p>Nº: <%=response.write (""&GUIA_D&"") %></p></td>
<input type="hidden" name="csr" readonly="readonly" size="10" value="<%=distribuidor%>" ></td>
<input type="hidden" value="<%=loc%>" autocomplete="off" ></td>
<input type="hidden" name="txt" id="txt1" value="<%=cuen%>" autocomplete="off">
<input type="hidden" name="serie" value="<%=ACTUAL%>" ></td>
<input type="hidden" value="<%=GUIA_D%>" >
</table>
<p align="center"> </p>
<%For cuen = ""&CSR_INI&"" To ""&rs("CONTADOR")&"" Step 1%>
<table width="351" border="1" align="center" bordercolor="#0000FF" id="idt_<%=cuen%>">
<tr>
<td>Sel</td>
<td width="36">Csr:</td>
<td width="70">Modelo:</td>
<td width="47">Serie:</td>
<td width="170">Comentarios:</td>
</tr>
<tr>
<td width="21"><input type="checkbox" name="cod" value="" tabindex="1" ></td>
<td height="55"><input type="text" name="csr" readonly="readonly" size="2" value=<%=cuen%> tabindex="3"></td>
<td><input type="text" name="txt" id="txt<%=cuen%>" value="" autocomplete="off" tabindex="4"></td>
<td><input type="text" name="serie" tabindex="5"></td>
<td><textarea name="comentarios" cols="30" rows="3" wrap="VIRTUAL" tabindex="6"></textarea></td>
</tr>
</table>
<%next%>
<div id="contenedorOpt" class="capa" style="display:none;"></div>
</form>
Lo del código Ajax lo dejé intacto porque no lo domino muxo.....jejejeje
Aps....para recibir los parámetros debo hacerlo mediante un FOR cierto??
Creo que debo hacerlo asi pero no estoy seguro:
Código ASP:
Ver original<%
csr=Request("csr")
txt =Request("txt")
serie =Request("serie")
comentarios =Request("comentarios")
set Cnn = Server.CreateObject("ADODB.Connection")
set rs = Server.CreateObject ("ADODB.Recordset")
Cnn.Open Session("cnx")
vecCSR = split ( csr ,",")
vecTXT = split ( txt ,",")
vecSERIE = split ( serie ,",")
vecCOMENTARIOS = split ( comentarios ,",")
for i=0 to UBound(vecCSR)
strSQL =" INSERT INTO KARDEX_HISTORIAL_REP (Nro_CSR, MODELO, Nro_serie, COMENTARIO) VALUES
(' "&trim(vecCSR(i))&" ',' "&trim(vecTXT(i))&" ', ' "&trim(vecSERIE(i))&" ', ' "&trim(vecCOMENTARIOS(i))&" ') "
set rs = Cnn.Execute(strSQL)
next
No se si estaré en lo correcto pero el valor de los modelos con lo del autocompletar llegarían como txt1, txt2, txt3 y asi sucesivamente cierto??
Entonces como debería hacerlo para recibir los parámetros y hacer el INSERT???
De antemano muchas gracias por responder mis dudas Adler......