Código ASP:
Ver original<%@ Language=VBScript %>
<% Response.addHeader " ", "no-cache" %>
<% Response.CacheControl = "Private" %>
<% Response.Expires=0 %>
<%
dim cuen
%>
<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>
<%For cuen = 90001 To 90010 Step 1 'HE CAMBIADO EL FOR PARA NO REPITA LA CABECERA 10 VECES..., DE ESTA MANERA CREA 1 CABECERA Y 10 FILAS....
<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>
Prueba poniendo el For donde te digo campeon.