Orlini, Robert wrote: > I don't do enough CF work to get all the little things right. I just wanted to point out that this problem was basic boolean logic and would apply to any language or system, not just ColdFusion.
<CFIF (url.workgroup NEQ "Conference") and (url.workgroup NEQ "sales rep")> Is the same as if (url.workgroup != 'Conference') && (url.workgroup != 'sales rep') Is the same as IF (url.workgroup != 'Conference') && (url.workgroup != 'sales rep') THEN But otherwise glad we could help. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:294690 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

