>
> But, each submit button will have to have a different
> fuseaction.
>
Sure , create a hidden form field called fuseaction
<input type=hidden name=fuseaction value ="">

Put this function in the header

<cfhtmlhead text="
<script>
function SubmitFuseAction(fuseaction)
{
    document.forms[0].fuseaction.value = fuseaction;
    document.forms[0].submit();
}
</script>
">

and on your buttons

<input type=button onclick="SubmitFuseAction('fuseaction1');" value="button
1">
<input type=button onclick="SubmitFuseAction('fuseaction2');" value="button
2">


~Justin



------------------------------------------------------------------------------
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