>I agree Dave. >That's why I posted the question here. >I would really appreciate any concrete solutions/options/direction from >the other experts here. >
Whenever I have radio buttons I need to read, I just create fieldnames you can pick up on, like this name="readThis_field" When you process it, loop over the fieldnames and only read the ones you need, like Dave said. This is inside the loop: <cfif listFirst(thisfield, "_") EQ "readThis"> Process it here </cfif> But I've mostly done this when I had dynamic radio buttons from my db. Then I'll use this same method but encode a PK ID to the end of the name. whateverName_#shipOptionID# Then you can grab that ID using listLast() to use in your query WHERE clause or somethin. I think I picked up that technique from Ray's blog one day. Anyway, I've used the heck out of it ever since. www.coldfusionjedi.com hth, Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295969 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

