Creo haber encontrado en parte la solucion, porque me aparece mal mostrado en pantalla
los datos de la tabla...este es el codigo:
Código ASP:
Ver original<%@ Language=VBScript %>
<% Response.addHeader " ", "no-cache" %>
<% Response.CacheControl = "Private" %>
<% Response.Expires=0 %>
<%
dim cuen
For cuen = 90001 To 90010 Step 1
%>
<table width="430" height="103" border="1" align="center">
<tr>
<td width="213"><p>Distribuidor:</p>
<p>Local:</p>
<p>Fecha:</p></td>
<td width="130"><p>Guía de Despacho </p>
<p>Nº:</p></td>
</tr>
</table>
<p align="center"> </p>
<table width="351" border="1" align="center">
<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=""></td>
<td height="42"><input name="csr" size="20" value=<%=response.write (""&cuen&"") %>></td>
<td><input name="artefacto"></td>
<td><input name="serie"></td>
<td><textarea name="comentarios" cols="30" rows="1" wrap="VIRTUAL"></textarea></td>
</tr>
</table>
<%next%>
<p align="center"> </p>
EL problema es que se ve asi:
De momento sólo hago un FOR desde 90001 hasta el 90010... o sea para ingresar 10 registros...pero no funciona correctamente....
No se que más hacer.....será que le falta un DO While o algo asi ????
De antemano muchas gracias