An easy solution would be to use <cfparam> to initialize variables to a default value 
if they don't exist. 
You could use something like this:

<cfparam name = "myvar" default = "">

then do a check:

<cfif not(len(myvar))>
        <cflocation url="myurl.cfm">
</cfif>

I think it's a little cleaner than using IsDefined and then checking if the var is 
empty.

Original message from: John Allred
>I have several templates that require an ID variable to be passed to
>them. When the templates load, they run a query "WHERE (COUNTY_NO =
>'#ID#')" -- ID is a CGI variable.

------------------------------------------------------------------------------
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