I want to use following code to control elements on the form.
I use cfoutout that it shows the value is 0, but the cfif control does not show the cfselect on the form.
Is it the right way to do control on the form?
Your help and information is great appreciated,
Regards,
Iccsi,
<cfoutput>
FORM site "#form.MySite#"
</cfoutput>
<CFIF structKeyExists(form,MySite)>
<cfif "#form.MySite#" EQ "0">
<tr>
<td>
<cfselect name="Mylst" id="Mylst">
</td>
</tr>
</cfif>
</cfif>