Let me try to understand this, let's say you have a form with the buttons: UPDATE and DELETE.
And you want to execute an update or delete action depending on the wich button was pressed correct?
If that's the case here's an example:
====================================================
here are your input buttons:
<form action="selectAct.cfm" method="post">
<input type="submit" name="update" value="UPDATE">
<input type="submit" name="delete" value="DELETE">
</form>
=====================================================
here's the "selectAct.cfm" page:
<cfif IsDefined("FORM.update"

>
<!--- Run update query --->
<cfelseif IsDefined("FORM.delete"

>
<!--- Run delete query --->
</cfif>
Let me know if this helps.