> > I would I would like to return the structure to the refering page, is > this possible, > please? >
Sure is: Function code: <cffunction name="foo" returntype="struct"> <cfset stBar = StructNew()> <cfset stBar.bar = "foo"> <cfset stBar.foo = "bar"> <cfreturn stBar> </cffunction> Calling template: <cfset stResult = foo()> HTH Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:300303 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

