Try using SPLIT() function to split those values in to array and use a FOR loop as below.
Code:
strArr = split(strCommaSeparatedVar)
For i = LBound(strArr) to UBound(strArr)
Response.write strArr(i)
Next
Hope that helps.
Cheers!
_________________________
- Vijay G
Strive for Perfection