> I have an Access memo field storing paragraphs. I have CF > outputting the field. I want to have some formatting in > the output (eg. a hyperlink, Bold or Italics). I did this > locally (CF MX) with the function URLDecode. > > However, my ISP server is CF 4.0 and it won't render. > Could someone suggest a work around for me until they > upgrade?
It sounds to me like you're not storing literal HTML formatting instructions in your data, but rather escaped HTML. Why not just store unescaped HTML? If that's not an option, you might use a custom tag to perform the unescaping for you. Someone might have already done this, or you might have to write your own. Basically, this custom tag would find each escape character sequence and replace it with the matching literal HTML character. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

