Andy Matthews wrote: > To clarify, what I'm looking for is the ability to override the title tag > before the rendered HTML is sent to the browser. >
That is not going to happen with a simple function, neither UDF or Component, in a normal flow of processing. CFML process sequentially from start to finish and can not go back and change output already put into the buffer for delivery to the web server and ultimately the client's browser. To do something like this you will either have to manually capture the output and then modify it as desired or intercept the output before delivery to the web server. The latter can be done with the OnRequest method of an Applicaiton.CFC or manipulating the underlining Java 'page' object. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317931 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

