Hi guys, I am looking for a way to put an automatic link on every occurrence of a certain word over all the pages on my site. Say for example the word "lawyer"... On every page all over my site, I want this word to be linked to a lawyer website. How can I achieve that? I know there must be some tools out there that do this kind of stuff... Cheers
If its ASP and your getting the text from a database you can do this. content= rs("content") content= Replace(content, "lawyer", "<a href='www.lawyers.com'>lawyers</a>") response.write content