It sounds like what you really want to do is name your submit buttons like
so:
<input type="submit" value="Submit this form" name="form1">

Each submit button would have a different name. Then on your action page
(formpage.cfm) you would do something like so:

<cfif isdefined("form.form1")>

do your code for form 1

<cfelseif isdefined("form.form2")>

etc.......
</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.mail-archive.com/cf-talk@houseoffusion.com/
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