|
Re: coldfusion: dynamic links for every occurance
Hi
you can use ReplaceNoCase(yourContent, matched word,replace by word ) for this.
for example
<cfoutput>
#ReplaceNoCase('QueryName.field', 'Julie Davey' , '<a href="julie.cfm">Julie Davey</a>', 'All')#
</cfoutput>
try it
best of luck
Last edited by uday; Feb 21st, 2008 at 11:25.
|