>Can this be combined into one?
>
><cfif ParameterExists(XXX)>
>       <cfif #xxx# IS "x">
>       Do this
>       </cfif>
></cfif>


Try this...

<cfif IsDefined("XXX") AND XXX EQ "x">
        Do This
</cfif>

I used IsDefined() in place of ParameterExists() since the latter is being
deprecated and possibly will not exist is future releases of CF.


HTH,
Steve

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to