Hi webber123456,
Thanks for your quick reply and nifty code.
I'm almost there, just having a little trouble displaying the keywords as actual text links. What I'm getting with this line:
response.write( "http://" & myArr(i) )
is: http:// live bands, http:// musicians, http:// performers, etc...
What I'd like is for each key phrase to become an active text link that can in turn be used as a keyword/keyphrase search in the database.
The actual script I'm using is this:
Dim MyStr, MyArr
MyStr = "<%=oRS("keywords")%>"
MyArr = Split(MyStr, ",")
for i= 0 to ubound(myArr)
document.write("http://" & myArr(i) & " ")
Next
("response.write" didn't work for me, but "document.write" did. Must be something to do with me being a bit of a newbie!)
Cheers