On Monday, Oct 21, 2002, at 09:31 US/Pacific, Jesse Houwing wrote: > I had already altered them to Variables._File. Is that the same btw? > I'm > lost here. Blame it on the lack of coffee :)
variables._file puts it in (the caller's) page scope. var _file puts it in the function's local scope (which goes away when the function exits). Unless you *want* _file to be accessible outside the function, you should use 'var' to declare it as a local variable. "I have always wished that my computer would be as easy to use as my telephone. My wish has come true - I no longer know how to use my telephone." -- Bjarne Stroustrup ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

