> I am calling CFContent inside a custom tag > (dsp_showimage) where I display image and > then delete it using cfcontent. The page > (dsp_showallproducts.cfm) which is calling > that custom tag has got loop inside it. Now > problem I am having is that I can only see > image which is being deleted afterwards > because of cfcontent but no html output of > my caller.
That's the way CFCONTENT works, when returning a file - it sends a single HTTP response containing the file. You can't send two HTTP responses, which sounds like what you're trying to do. 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 Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

