Forum Moderators: open
The values are coming in with a comma separated e.g
recipient = Request.Form("fld_to")
Response.Write recipient gives the result 3,5,12,9 etc
My problem is, I need to take each value and insert data based on each value something like 'insert into tbldata where recipient = &recipient &.
How do i do a loop through a comma separated list like this? I just need an idea on what to do then i can take it from there