> How many variables can I return with a CFSCRIPT block?

You mean with a UDF ? ... As many as you want ... as long as they're all part of the 
same complex object like a query, structure or array ... 

function foo() {
        var myreturn = new Structure(); 
        myreturn.hello = "hello"; 
        myreturn.world = "world"; 
        return myreturn; 
}

Isaac 
www.turnkey.to 
954-776-0046

______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to