Determines whether a parameter exists. ColdFusion does not evaluate the argument.
parameterExists(name)
returns boolean
Name | Type | Required | Default | Description |
---|---|---|---|---|
parameter | string | Yes | A syntactically valid parameter name. |
<cfif parameterExists(FORM.myString)>
<P>Using parameterExists, we have shown that the FORM field 'myString' now exists.
</cfif>