blueindian1
Programmer
Hello All,
Here is my problem. I have a hidden field called theField on formA that contains the following:
"Dogs&Cats&Birds&Snakes&Rhinos"
I submit the form, and on the next page have
My question is this: what's the best way to parse the individual terms out of the string such that I can set individual variables equal to "Dogs", "Cats", "Birds", etc..
Thanks!
Here is my problem. I have a hidden field called theField on formA that contains the following:
"Dogs&Cats&Birds&Snakes&Rhinos"
I submit the form, and on the next page have
Code:
dim var
var = reqest.form("theField")
My question is this: what's the best way to parse the individual terms out of the string such that I can set individual variables equal to "Dogs", "Cats", "Birds", etc..
Thanks!