I am trying to write an If Statement where if "session.checkout.info.abc_1Certificate_1"
exists and is not blank then show it. But if "session.checkout.info.abc_1Certificate_1"
is blank don't show it.
This is what I have come up with but it is not working properly..
<cfif (len(trim("session.checkout.info.abc_1Certificate_1")))>
Certificate: #session.checkout.info.abc_1Certificate_1#
</cfif>