Ver Mensaje Individual
  #6 (permalink)  
Antiguo 31/08/2009, 16:04
Avatar de totiwuo
totiwuo
 
Fecha de Ingreso: septiembre-2008
Mensajes: 13
Antigüedad: 15 años, 7 meses
Puntos: 0
Respuesta: AYUDA: Como llenar un array en asp con textbox creados dinamicamente

ok gracias a ustedes,

ya llegue hasta esta parte del codigo
tmpArr=request("IdProductA")
tmpArr1=request("Quantity")
if tmpArr1 <> "" then
tmpArrSPID=split(tmpArr,",")
tmpArrSPQty=split(tmpArr1,",")
tmpSPCount=ubound(tmpArrSPID)
tmpSPIndex=0
end if

dim myarrayproduc()

for i=tmpSPIndex to tmpSPCount
if tmpArrSPQty(i) <> "" then
response.write(tmpArrSPID(i) & " - " & tmpArrSPQty(i) & "<br/>")
end if
next

quiero que solo me muestre los id y cantidades que ingrese en el formulario de envio pero no me funciona.

por ejemplo deseo que sole me ponga el primer arreglo:
67 - 1
68 -
69 -