I have a loop that is going to display everything including the quantity:
dim i
i = 1
.......
</TD><TD><INPUT TYPE="textbox" SIZE=5 NAME="qty<%=i%>" VALUE="<%=rs("Qty"
%>">
i = i + 1
but later on I want to display the quantity(qty) one by one with a loop:
dim j
j = 1
.....
Response.Write Request.Form("qtyj"
'this is definitely
'wrong
j = j + 1
how can I put the j inside the Request.Form instead of using qty1, qty2, qty3....?
thank you very much.
dim i
i = 1
.......
</TD><TD><INPUT TYPE="textbox" SIZE=5 NAME="qty<%=i%>" VALUE="<%=rs("Qty"
i = i + 1
but later on I want to display the quantity(qty) one by one with a loop:
dim j
j = 1
.....
Response.Write Request.Form("qtyj"
'wrong
j = j + 1
how can I put the j inside the Request.Form instead of using qty1, qty2, qty3....?
thank you very much.