I'm trying to find out if a url variable exists, and if it doesn't, make sure that it's not empty.
This does not work:
<cfif IsDefined('URL.affiliateId') and is not "">
//
</cfif>
|
I'm trying to find out if a url variable exists, and if it doesn't, make sure that it's not empty. This does not work:
| |||||||
feedback
|
| |||||||||||
feedback
|
|
You can simplify the logic a bit as well by using <cfparam> to ensure that the URL variable always exists. Then rather than having 2 conditions, you just need 1.
| |||
feedback
|
|
To ignore most white space
... or alternately
| |||
|
feedback
|
| |||||||||||||
feedback
|
|
I will just sum up the answers and offer my version of it:
You do not need structKeyExists or isDefined and it would be better to avoid them. Also you do not need the 'greater than zero' part after the 'len()'. | |||||||||
feedback
|