If you want to pass "yes" to the action page, you should use value="yes"
with checked. If you want to pass "5" the following is correct.

<CFINPUT TYPE="RADIO" NAME="Part3_2" VALUE="5" CHECKED>?

Only fields that are checked will be passed, so on the action page, ifyou
want to check if something has been passed, just check to see if the form
field isdefined:

<cfif isdefined("form.part3_2")>
The field was checked.
</cfif>

hope that helps



************************************************************
Deanna Schneider
Interactive Media Developer
UWEX Cooperative Extension Electronic Publishing Group
103 Extension Bldg
432 N. Lake Street
Madison, WI 53706
(608) 265-7923



------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to