How do I loop through a group of check boxes with the same name in ColdFusion?
I'm generating several check boxes that all have the same name, when the form is processed I need to loop through the check b开发者_运维技巧oxes and get the ones that are checked for further processing. How would I do this using ColdFusion? Thanks!
<cfloop index="i" list="#FORM.supportSystems#">
#i#
</cfloop>
精彩评论