snowboardr
Programmer
This spits out some values like this
test, test, test, test,
but I am trying to remove the last comma and can't get this to work.
For Each x in KeyWordSplit
If KCount = 1 - CountDims(KeyWordSplit) then
sComma = ""
Else
sComma = ", "
End If
Response.write x & sComma
kCount = kCount + 1
Next
test, test, test, test,
but I am trying to remove the last comma and can't get this to work.
For Each x in KeyWordSplit
If KCount = 1 - CountDims(KeyWordSplit) then
sComma = ""
Else
sComma = ", "
End If
Response.write x & sComma
kCount = kCount + 1
Next