Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/11/2002, 20:05
Avatar de GhostRider
GhostRider
 
Fecha de Ingreso: julio-2001
Ubicación: en mi propio infierno
Mensajes: 248
Antigüedad: 23 años, 9 meses
Puntos: 0
este código es correcto?:

<%
orders_row = 10

if (not isnull (request.Querystring(ordersnum))) then
orders_rows = request.Querystring(ordersnum)
end if

for i = 1 to orders_row
%>

<td><input name="asked<%&i%>" type="text" id="asked" </td>
<td><input name="order<%&i%>" type="text" id="asked" </td>
<td><input name="manifiest<%&i%>" type="text" id="asked" </td>
<td><input name="product<%&i%>" type="text" id="asked" </td>
<td><input name="code<%&i%>" type="text" id="asked" </td>
<td><input name="qty<%&i%>" type="text" id="asked" </td>
<td><input name="ship<%&i%>" type="text" id="asked" </td>
<td><input name="actual<%&i%>" type="text" id="asked" </td>

<%
i = i + 1
next
%>