Hi.
I use some simple
VB script and have few session variables, which I have listed in rows (listed ordered articles)
By every this field I would like to have input form which would be the quantity of this article, something like:
Aricle -> Session("Article"&X)
Quantity ->
<input name="<%=Session("Article"&X)%>" type="text" value="<%=Session("Quantity"&X)%>" size="3" maxlength="4">
Now after that I would that by pressing Submit every value from this form to be inputed in Session("Quantity"&X).
How to do that?
Thanks.