Renee,

I previously used a javascript box for that - but now I place the checkbox
below the form and do serverside checking on it... That way it does not
matter if they have javascript turned off. Also - server side checking gives
me more flexibility...

<cfif IsDefined("Form.IsSubmitted") and Form.IsSubmitted EQ "TRUE">

    <cfif IsDefined("Form.AcceptTerms") and Form.AcceptTerms NEQ "TRUE">
    Error - Did NOT Accept Terms - Show Error or do some error stuff
    <cfelse>
    Do whatever Form Does
    </cfif>

</cfif>

- Nick



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4860
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to