|
|
|||||
CFM Tutorial
Part I - Introduction
Part II - Getting Up
Part III - Getting started
Part IV - References |
Cold Fusion Function: ParameterExists Description
Syntax ParameterExists(Parameter) Example The following example checks to see if a variable of any type nameUSER_ID exists.
<CFIF ParameterExists(USER_ID) IS "Yes">The next example checks to see if a CGI variable name USER_ID exists,
and ignores variables of other types.
<CFIF ParameterExists(CGI.USER_ID) IS "Yes"> |
References(1) the Cold Fusion Web Application Construction Kit, Second Edition.
|
|||
|
|||||