Question
check box Coldfusion 9 question
Hello i'm trying to use two check boxes when selected I want it to change how it does the order by. So far I have this:
<CFIF isDefined("Form.artist") IS "YES">
ORDER BY products.artist
</CFIF>
<CFIF isDefined("Form.qoo") IS "YES">
ORDER BY products.QtyOnOrder DESC
</CFIF>
This also errors out. What am I doing wrong? Can this be done using checkboxes? Anyhelp would be great.
Thanks
