> Ok here is another one for ya... > I have a bunch of html documents stored in my database and > in these > documents I need to run some ColdFusion code before it's > displayed. But > since I'm outputting the html using ColdFusion it will not > work. Is there > some other way of running my cf code before or after I > call it or something?
> Hopes this makes sense... > Thanks, > - Neal If you need to evaluate variables within the html stored in the field i.e. <p class="header">#variable_here#</p> There's at least one UDF on cflib.org that will allow you to do that. I was looking for it the other day but couldn't find it... I can forward you the one I use if you like, just let me know. If you need to evaluate tags within the html stored in the field i.e. <p class="header"><cf_mytag content="blah"></p> Then you need to store the content of the column in a coldfusion template and include it with cfinclude or cfmodule. s. isaac dealey 972-490-6624 team macromedia volunteer http://www.macromedia.com/go/team chief architect, tapestry cms http://products.turnkey.to onTap is open source http://www.turnkey.to/ontap ----------------------------------------------- To post, send email to [EMAIL PROTECTED] To unsubscribe: Send UNSUBSCRIBE to [EMAIL PROTECTED] To subscribe / unsubscribe: http://www.dfwcfug.org
