cjkenworthy
Programmer
I am trying to read values from multiple fields into one single string strTERMNO. The fields come from a form:
<form>
txttermno1
txttermno2
txttermno3
txttermno N etc ..
</form>
The number of txttermno's change dynamically, so there is no set number.
I want strTERMNO to be set to a comma seperated string:
strTERMNO = txttermno1's value, txttermno2's value ...
How would I do a loop to do this, given that I can pass this number of txttermno's in a variable 'varCounter' ?
thanks, chris.
<form>
txttermno1
txttermno2
txttermno3
txttermno N etc ..
</form>
The number of txttermno's change dynamically, so there is no set number.
I want strTERMNO to be set to a comma seperated string:
strTERMNO = txttermno1's value, txttermno2's value ...
How would I do a loop to do this, given that I can pass this number of txttermno's in a variable 'varCounter' ?
thanks, chris.