> Of course, at the same time, I can't stand people who change code from > <cfif x is y> to compare because supposedly compare is .001 ms faster.
Actually... compare does execute about 2.5 times faster than doing a direct string comparison, at least on my servers anyway. Granted, if there's only a couple of comparisons to make, it's not worth changing code that's already written (unless it's within a massive loop or a page that gets his several thousand times a minute), but I always use compare/comparenocase on new code regardless. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm 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

