All Forums >> [Scripting] >> ASP >> Convert DB text to links Do you like VisualBasicScript.com? Link to us and help spread the word about our forum. Thanks!
I need code to convert text from an ms access db into keyword links in asp/html.
In ms access there is a table that contains keywords separated by commas (live bands, musicians, performers, etc) where each phrase is to be converted into a separate html text link.
Thanks webber123456, but the keywords have been successfully split by using "& " ".
Using the current code will produce a http:// tag in front of the keyword, so you get for example: http://musicians. And this won't link to anything of consequence.
What I'd like to know is how to use the split text phrases to get a *reference* to a http link. Eg: <a href="http://www.awebsite.com/urlreference1.asp>musicians</a>, <a href="http://www.awebsite.com/urlreference2.asp>performers</a>, <a href="http://www.awebsite.com/urlreference3.asp>live bands</a>