toddsalcedo
Programmer
I have a dynamic string (1, 2, 3, 4,) that can contain numerous different numbers (they are ID numbers). I need an easy way to split the string so I can use each number individually to access the database and query for those records. I tried the following but it doesn't work.
id = request.form("id")
Replace(id, "") 'removing spaces
Split(id, ",") ' split at ","
id = request.form("id")
Replace(id, "") 'removing spaces
Split(id, ",") ' split at ","